Skip to content

Commit

Permalink
Update build-and-deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
boecks authored Oct 6, 2024
1 parent cc9b1e0 commit 96226f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ jobs:
matrix.platform == 'linux/arm/v7' && 'armv7' ||
matrix.platform == 'linux/arm/v6' && 'armv6' ||
'i386'
}}:${{ github.ref == 'refs/tags/*' && github.ref_name || github.ref == 'refs/heads/main' && 'latest' || github.ref == 'refs/heads/dev' && 'dev' || (github.event_name == 'pull_request' && format('pr-{0}', github.event.number)) || 'dev' }}
}}:${{ github.ref_type == 'tag' && startsWith(github.ref_name, 'v') && github.ref_name || github.ref == 'refs/heads/main' && 'latest' || github.ref == 'refs/heads/dev' && 'dev' || (github.event_name == 'pull_request' && format('pr-{0}', github.event.number)) || 'dev' }}
platforms: ${{ matrix.platform }}
build-args: |
BUILD_FROM=python:3.11-alpine

0 comments on commit 96226f3

Please sign in to comment.