Skip to content

Deploy nightly release #771

Deploy nightly release

Deploy nightly release #771

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: Build and push
uses: docker/bake-action@v5
with:
push: true
targets: "nightly"