Skip to content

Commit

Permalink
add appendix tag in release ci
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfeil committed Oct 16, 2024
1 parent a7d5ac3 commit 0df0507
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 26 deletions.
24 changes: 0 additions & 24 deletions .github/PULL_REQUEST_TEMPLATE/pull_request_template.md

This file was deleted.

8 changes: 6 additions & 2 deletions .github/workflows/release_docker_container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ on:
env:
TEST_TAG: ${{ inputs.image }}:test
LATEST_TAG: ${{ inputs.image }}:latest
APPENDIX_TAG: ${{ inputs.appendix_tag || '' }}

jobs:
docker:
Expand Down Expand Up @@ -67,13 +68,16 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

# Uncomment the following steps if you want to build and test the image locally
# - name: Build for Test
# uses: docker/build-push-action@v5
# with:
# context: ${{ inputs.context }}
# file: ${{ inputs.dockerfile }}
# load: true
# tags: ${{ env.TEST_TAG }}
#
# - name: Test
# # show that at least --help command is running
# run: |
Expand All @@ -88,5 +92,5 @@ jobs:
# linux/amd64 and linux/arm64
# cache-from: type=registry,ref=${{ env.LATEST_TAG }}
platforms: ${{ inputs.platforms }}
tags: ${{ env.LATEST_TAG }}{{ inputs.appendix_tag }},${{ env.VERSION_TAG }}{{ inputs.appendix_tag }}
push: true
tags: ${{ env.LATEST_TAG }}${{ env.APPENDIX_TAG }},${{ env.VERSION_TAG }}${{ env.APPENDIX_TAG }}
push: true

0 comments on commit 0df0507

Please sign in to comment.