We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04ee7b3 commit 7f54378Copy full SHA for 7f54378
.github/workflows/build-and-publish-docker.yml
@@ -83,10 +83,10 @@ jobs:
83
push: ${{ github.event_name != 'pull_request' }} # Only push if not a PR
84
# Define tags for the Docker image using version information
85
tags: |
86
- latest
87
- ${{ env.MAJOR_MINOR_PATCH }}
88
- ${{ env.MAJOR_MINOR }}
89
- ${{ env.MAJOR }}
+ test/test:latest
+ test/test:${{ env.MAJOR_MINOR_PATCH }}
+ test/test:${{ env.MAJOR_MINOR }}
+ test/test:${{ env.MAJOR }}
90
# tags: ${{ steps.meta.outputs.tags }} # Use the tags generated in the previous step
91
# labels: ${{ steps.meta.outputs.labels }} # Use the labels generated in the previous step
92
cache-from: type=gha # Use GitHub Actions cache to speed up builds
0 commit comments