Skip to content

Add more debug tools (#34) #19

Add more debug tools (#34)

Add more debug tools (#34) #19

Workflow file for this run

name: release
on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2.4.0
with:
fetch-depth: 1
- name: build image
run: docker build --platform linux/amd64 -t ghcr.io/digitalocean-packages/doks-debug:latest .
- name: log into container registry
run: echo "${{ secrets.GHCRTOKEN }}" | docker login ghcr.io --username "${{ secrets.GHCRUSER }}" --password-stdin
- name: push image
run: docker push ghcr.io/digitalocean-packages/doks-debug:latest