We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfd96fc commit 523b873Copy full SHA for 523b873
.github/workflows/manual-test-tutorial.yaml
@@ -28,7 +28,7 @@ jobs:
28
run: |
29
cd self-managed/infrastructure/docker/images
30
./generate_variables.sh
31
- echo `cat variables.env | grep CONSUL_VERSION | sed 's/.*=//'` >> $GITHUB_RELEASE_TAG
+ echo `cat variables.env | grep CONSUL_VERSION` >> $GITHUB_ENV
32
./build_images.sh
33
- name: Run GS 1
34
@@ -52,8 +52,8 @@ jobs:
52
env:
53
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
54
with:
55
- tag_name: ${{ env.GITHUB_RELEASE_TAG }}
56
- release_name: Release ${{ env.GITHUB_RELEASE_TAG }}
+ tag_name: ${{ env.CONSUL_VERSION }}
+ release_name: Release ${{ env.CONSUL_VERSION }}
57
draft: false
58
prerelease: false
59
- name: Upload Release Asset
0 commit comments