Skip to content

Deploy nightly release #374

Deploy nightly release

Deploy nightly release #374

Workflow file for this run

name: Deploy nightly release
on:
schedule:
- cron: '0 3 * * *'
jobs:
buildx:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Login to DockerHub
uses: docker/login-action@v1
with:
# TODO: replace username with action variable
username: punksecurity
password: ${{ secrets.DOCKER_ACCESS_TOKEN }}
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Run Buildx
run: |
docker buildx build . \
--push \
--progress=plain \
--tag docker.io/punksecurity/dnsreaper:nightly \
--platform linux/amd64