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 727620e commit b9aa761Copy full SHA for b9aa761
.github/workflows/docker-build.yml
@@ -1,4 +1,4 @@
1
-name: Build and Push Docker Image for nginx-utils container
+name: Build and Push Docker Image For nginx-utils Container
2
permissions:
3
contents: read
4
packages: write
@@ -14,8 +14,11 @@ jobs:
14
if: endsWith(github.event.release.tag_name, '-docker')
15
runs-on: ubuntu-latest
16
steps:
17
+ - name: Set Release Version
18
+ run: echo "RELEASE_VERSION=${RELEASE_VERSION%-docker}" >> $GITHUB_ENV
19
+
20
- name: Starting Release Build
- run: echo "Starting Release Build for ${{ github.event.release.tag_name }}"
21
+ run: echo "Starting Release Build for ${RELEASE_VERSION}"
22
23
- name: Checkout code
24
uses: actions/[email protected]
0 commit comments