4 changed files with 37 additions and 44 deletions
@ -3,38 +3,32 @@ name: Docker Publish |
|||
on: |
|||
push: |
|||
branches: |
|||
- 'main' |
|||
- "main" |
|||
schedule: |
|||
- cron: '0 0 * * *' |
|||
- cron: "0 0 * * *" |
|||
|
|||
jobs: |
|||
docker: |
|||
runs-on: ubuntu-latest |
|||
steps: |
|||
- |
|||
name: Checkout |
|||
- name: Checkout |
|||
uses: actions/checkout@v3 |
|||
- |
|||
name: Set up QEMU |
|||
- name: Set up QEMU |
|||
uses: docker/setup-qemu-action@v2 |
|||
- |
|||
name: Set up Docker Buildx |
|||
- name: Set up Docker Buildx |
|||
uses: docker/[email protected] |
|||
- |
|||
name: Login to DockerHub |
|||
- name: Login to DockerHub |
|||
uses: docker/[email protected] |
|||
with: |
|||
username: ${{ secrets.DOCKER_HUB_USERNAME }} |
|||
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} |
|||
- |
|||
name: Login to GitHub Container Registry |
|||
- name: Login to GitHub Container Registry |
|||
uses: docker/[email protected] |
|||
with: |
|||
registry: ghcr.io |
|||
username: ${{ github.actor }} |
|||
password: ${{ secrets.GITHUB_TOKEN }} |
|||
- |
|||
name: Build and push |
|||
- name: Build and push |
|||
uses: docker/[email protected] |
|||
with: |
|||
context: . |
|||
|
Loading…
Reference in new issue