|
24 | 24 | IMAGE_NAME: ghcr.io/tomkerkhove/microservices-with-api-management-monolith |
25 | 25 | steps: |
26 | 26 | - uses: actions/checkout@v2 |
27 | | - - name: Determine image tag from Release (${{ github.ref }}) |
| 27 | + - name: Determine image tag from Release (${{ github.ref_name }}) |
28 | 28 | if: ${{ github.event_name == 'release' }} |
29 | | - run: echo "IMAGE_TAG=${{ github.ref }}" >> $GITHUB_ENV |
| 29 | + run: echo "IMAGE_TAG=${{ github.ref_name }}" >> $GITHUB_ENV |
30 | 30 | - name: Determine image tag from manual trigger (${{ inputs.imageTag }}) |
31 | 31 | if: ${{ github.event_name == 'workflow_dispatch' }} |
32 | 32 | run: echo "IMAGE_TAG=${{ inputs.imageTag }}" >> $GITHUB_ENV |
|
47 | 47 | IMAGE_NAME: ghcr.io/tomkerkhove/microservices-with-api-management-services-order |
48 | 48 | steps: |
49 | 49 | - uses: actions/checkout@v2 |
50 | | - - name: Determine image tag from Release (${{ github.ref }}) |
| 50 | + - name: Determine image tag from Release (${{ github.ref_name }}) |
51 | 51 | if: ${{ github.event_name == 'release' }} |
52 | | - run: echo "IMAGE_TAG=${{ github.ref }}" >> $GITHUB_ENV |
| 52 | + run: echo "IMAGE_TAG=${{ github.ref_name }}" >> $GITHUB_ENV |
53 | 53 | - name: Determine image tag from manual trigger (${{ inputs.imageTag }}) |
54 | 54 | if: ${{ github.event_name == 'workflow_dispatch' }} |
55 | 55 | run: echo "IMAGE_TAG=${{ inputs.imageTag }}" >> $GITHUB_ENV |
|
70 | 70 | IMAGE_NAME: ghcr.io/tomkerkhove/microservices-with-api-management-services-shipment |
71 | 71 | steps: |
72 | 72 | - uses: actions/checkout@v2 |
73 | | - - name: Determine image tag from Release (${{ github.ref }}) |
| 73 | + - name: Determine image tag from Release (${{ github.ref_name }}) |
74 | 74 | if: ${{ github.event_name == 'release' }} |
75 | | - run: echo "IMAGE_TAG=${{ github.ref }}" >> $GITHUB_ENV |
| 75 | + run: echo "IMAGE_TAG=${{ github.ref_name }}" >> $GITHUB_ENV |
76 | 76 | - name: Determine image tag from manual trigger (${{ inputs.imageTag }}) |
77 | 77 | if: ${{ github.event_name == 'workflow_dispatch' }} |
78 | 78 | run: echo "IMAGE_TAG=${{ inputs.imageTag }}" >> $GITHUB_ENV |
|
93 | 93 | IMAGE_NAME: ghcr.io/tomkerkhove/microservices-with-api-management-services-product |
94 | 94 | steps: |
95 | 95 | - uses: actions/checkout@v2 |
96 | | - - name: Determine image tag from Release (${{ github.ref }}) |
| 96 | + - name: Determine image tag from Release (${{ github.ref_name }}) |
97 | 97 | if: ${{ github.event_name == 'release' }} |
98 | | - run: echo "IMAGE_TAG=${{ github.ref }}" >> $GITHUB_ENV |
| 98 | + run: echo "IMAGE_TAG=${{ github.ref_name }}" >> $GITHUB_ENV |
99 | 99 | - name: Determine image tag from manual trigger (${{ inputs.imageTag }}) |
100 | 100 | if: ${{ github.event_name == 'workflow_dispatch' }} |
101 | 101 | run: echo "IMAGE_TAG=${{ inputs.imageTag }}" >> $GITHUB_ENV |
|
0 commit comments