We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b306089 + 8cf1d07 commit b8c46abCopy full SHA for b8c46ab
1 file changed
.github/workflows/publish-to-prod.yaml
@@ -4,9 +4,8 @@ on:
4
push:
5
branches:
6
- production
7
- pull_request:
8
- branches:
9
- - production
+ tags:
+ - 'v*'
10
11
env:
12
APP_NAME: Resolver
@@ -102,11 +101,19 @@ jobs:
102
101
uses: actions/download-artifact@v4
103
with:
104
path: artifacts
+
105
+ - name: Generate SHA256 checksums
106
+ run: |
107
+ cd artifacts
108
+ find . -type f -exec sha256sum {} \; > checksums.sha256
109
110
- name: Create Release
111
uses: softprops/action-gh-release@v1
112
- files: artifacts/**/*
113
+ tag_name: ${{ github.ref_name }}
114
+ files: |
115
+ artifacts/**/*
116
+ artifacts/checksums.sha256
117
generate_release_notes: true
118
119
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments