Compare commits

..

4 Commits

Author SHA1 Message Date
renovate[bot]
bc0f30e493
⬆️ Update docker/build-push-action action to v3 (#146)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-05-13 13:50:22 +02:00
renovate[bot]
94cb28c642
⬆️ Update docker/setup-qemu-action action to v2 (#145)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-05-13 13:50:09 +02:00
renovate[bot]
229ae598dd
⬆️ Update docker/setup-buildx-action action to v2 (#144)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-05-13 13:49:57 +02:00
renovate[bot]
42bae4c2cf
⬆️ Update docker/login-action action to v2 (#147)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-05-13 13:49:44 +02:00

View File

@ -37,10 +37,10 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Set up QEMU - name: Set up QEMU
uses: docker/setup-qemu-action@v1 uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx ${{matrix.arch}} - name: Set up Docker Buildx ${{matrix.arch}}
uses: docker/setup-buildx-action@v1 uses: docker/setup-buildx-action@v2
- name: Set Version Prod ${{matrix.arch}} - name: Set Version Prod ${{matrix.arch}}
if: github.event_name != 'workflow_dispatch' && github.event_name != 'push' if: github.event_name != 'workflow_dispatch' && github.event_name != 'push'
@ -84,14 +84,14 @@ jobs:
echo ${{env.TAGS}} echo ${{env.TAGS}}
- name: Login to ghcr.io - name: Login to ghcr.io
uses: docker/login-action@v1 uses: docker/login-action@v2
with: with:
registry: ghcr.io registry: ghcr.io
username: ${{ github.actor }} username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }} password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push ${{matrix.arch}} - name: Build and push ${{matrix.arch}}
uses: docker/build-push-action@v2 uses: docker/build-push-action@v3
with: with:
push: ${{ github.event_name != 'pull_request' }} push: ${{ github.event_name != 'pull_request' }}
tags: ${{env.TAGS}} tags: ${{env.TAGS}}