Skip to content

Commit

Permalink
ci: use "dev" tag for Docker images for non-release builds
Browse files Browse the repository at this point in the history
  • Loading branch information
mu88 committed Feb 14, 2024
1 parent 350f5a4 commit e9d5b23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI_CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ jobs:
- name: Build Docker
if: ${{ env.IS_RELEASE != 'true' }}
run: |
dotnet publish src/WebApp/WebApp.csproj --os linux --arch arm64 /t:PublishContainer '-p:ContainerImageTags="${{ env.VERSION }};latest"'
dotnet publish src/WebApp/WebApp.csproj --os linux --arch arm64 /t:PublishContainer '-p:ContainerImageTags="${{ env.VERSION }}-chiseled;latest-chiseled"' -p:ContainerFamily=jammy-chiseled-extra
dotnet publish src/WebApp/WebApp.csproj --os linux --arch arm64 /t:PublishContainer '-p:ContainerImageTags="dev"'
dotnet publish src/WebApp/WebApp.csproj --os linux --arch arm64 /t:PublishContainer '-p:ContainerImageTags="dev-chiseled"' -p:ContainerFamily=jammy-chiseled-extra
- name: Push Docker
if: ${{ env.IS_RELEASE == 'true' }}
run: |
Expand Down

0 comments on commit e9d5b23

Please sign in to comment.