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 2694d11 commit a4d8e07Copy full SHA for a4d8e07
.github/workflows/tests.yaml
@@ -13,6 +13,8 @@ env:
13
REGISTRY: ghcr.io
14
API_IMAGE_PATH: ${{ github.repository }}/api
15
WEB_IMAGE_PATH: ${{ github.repository }}/web
16
+ image-tags: v1.5.1,latest
17
+ image-tags-2: latest
18
19
jobs:
20
api-unit-tests:
@@ -49,6 +51,13 @@ jobs:
49
51
username: ${{ github.actor }}
50
52
password: ${{ secrets.GITHUB_TOKEN }}
53
54
+ - name: "Setup: Create tags"
55
+ run: |
56
+ echo docker_tags=$(${{ env.image-tags }} | sed "s|\([^,]*\)|${{ env.REGISTRY }}/${{ env.API_IMAGE_PATH }}:\1|g") >> "$GITHUB_ENV"
57
+
58
+ - name: "Setup: print tags"
59
+ run: echo "$docker_tags"
60
61
# - name: "Setup: Docker Buildx"
62
# uses: docker/setup-buildx-action@v3
63
#
0 commit comments