|
26 | 26 | # The tracking tag will be "head", "v1.2.3", or "pr1234".
|
27 | 27 | # The unique tag will be a short SHA.
|
28 | 28 | unique_tag: ${{ steps.tag.outputs.unique_tag }}
|
29 |
| - tracking_tag: ${{ steps.tag.outputs.tag }} |
| 29 | + tracking_tag: ${{ steps.tag.outputs.tracking_tag }} |
30 | 30 | steps:
|
31 | 31 | - name: Checkout
|
32 | 32 | uses: actions/checkout@v3
|
|
41 | 41 | TRACKING_TAG=$(echo ${GITHUB_REF} | sed -e "s,refs/heads/main,head,g" -e 's,refs/tags/,,g' -e 's,refs/pull/\([0-9]*\).*,pr\1,g')
|
42 | 42 | echo "TRACKING_TAG: $TRACKING_TAG"
|
43 | 43 |
|
44 |
| - echo "unique_tag=$UNIQUE_TAG" >> "$GITHUB_OUTPUT" |
45 |
| - echo "tracking_tag=$TRACKING_TAG" >> "$GITHUB_OUTPUT" |
| 44 | + { |
| 45 | + echo "unique_tag=${UNIQUE_TAG}" |
| 46 | + echo "tracking_tag=${TRACKING_TAG}" |
| 47 | + } >> $GITHUB_OUTPUT |
46 | 48 | - name: Check whether publishing enabled
|
47 | 49 | id: publish
|
48 | 50 | env:
|
|
64 | 66 | steps:
|
65 | 67 | - name: Check out the repo
|
66 | 68 | uses: actions/checkout@v4
|
| 69 | + - name: Setup Outputs |
| 70 | + run: | |
| 71 | + echo "GITHUB_REF: $GITHUB_REF" |
| 72 | + echo "unique_tag=${{ needs.setup.outputs.unique_tag }}" |
| 73 | + echo "tracking_tag=${{ needs.setup.outputs.tracking_tag }}" |
67 | 74 | - name: Docker meta
|
68 | 75 | id: docker_meta
|
69 | 76 | uses: docker/metadata-action@v5
|
@@ -101,6 +108,11 @@ jobs:
|
101 | 108 | steps:
|
102 | 109 | - name: Check out the repo (slim)
|
103 | 110 | uses: actions/checkout@v3
|
| 111 | + - name: Setup Outputs |
| 112 | + run: | |
| 113 | + echo "GITHUB_REF: $GITHUB_REF" |
| 114 | + echo "unique_tag=${{ needs.setup.outputs.unique_tag }}" |
| 115 | + echo "tracking_tag=${{ needs.setup.outputs.tracking_tag }}" |
104 | 116 | - name: Docker meta (slim)
|
105 | 117 | id: docker_meta_slim
|
106 | 118 | uses: docker/metadata-action@v5
|
|
0 commit comments