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 82ed540 commit 6930018Copy full SHA for 6930018
.github/workflows/release.yaml
@@ -44,12 +44,17 @@ jobs:
44
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
45
aws-region: eu-west-1
46
47
+ - name: Prepare
48
+ id: prep
49
+ run: |
50
+ echo ::set-output name=VERSION::$(echo "${{ github.ref }}" | sed -e 's/.*\/v\(.*\)/\1/')
51
+
52
- name: Build and Upload Version
53
run: make ci
54
working-directory: ./templates
55
env:
56
S3_BUCKET: cf-templates-cloudvision-ci
- S3_PREFIX: ${{ github.ref }}
57
+ S3_PREFIX: ${{ steps.prep.outputs.VERSION }}
58
59
- name: Build and Upload Latest
60
0 commit comments