We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 131ede0 commit 1b322a9Copy full SHA for 1b322a9
1 file changed
.github/workflows/release.yaml
@@ -33,10 +33,20 @@ jobs:
33
# create a Github release with the generated artifacts
34
- name: Release
35
uses: softprops/action-gh-release@v1
36
+ if: github.ref == 'refs/heads/main'
37
+ with:
38
+ files: |
39
+ SHA256SUMS
40
+ *.raw
41
+ - name: Pre Release
42
+ uses: softprops/action-gh-release@v1
43
+ if: github.ref != 'refs/heads/main'
44
with:
45
+ prerelease: true
46
files: |
47
SHA256SUMS
48
*.raw
49
+
50
multi-build:
51
name: Multi version build
52
runs-on: ubuntu-22.04
0 commit comments