We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a1337a commit f06a25aCopy full SHA for f06a25a
.github/workflows/release.yml
@@ -0,0 +1,26 @@
1
+name: Release
2
+
3
+description: Create a GitHub release and attach built binaries when a version tag is pushed
4
5
+on:
6
+ push:
7
+ tags:
8
+ - 'v*'
9
10
+ steps:
11
+ - name: Download all workflow run artifacts
12
+ jobs:
13
+ release:
14
+ if: github.repository == 'warnermedia/gimme-aws-creds'
15
+ runs-on: ubuntu-latest
16
17
18
+ uses: actions/download-artifact@v4
19
+ with:
20
+ path: ./artifacts
21
+ - name: Create Release
22
+ uses: softprops/action-gh-release@v2
23
24
+ files: ./artifacts/**/*
25
+ env:
26
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments