We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 752e006 commit f7eeb71Copy full SHA for f7eeb71
.github/workflows/release.yaml
@@ -70,15 +70,12 @@ jobs:
70
cd dist
71
sha256sum * > checksums.txt
72
73
+ - name: List build artifacts
74
+ run: ls -la dist/
75
+
76
- name: Create Release
77
uses: softprops/action-gh-release@v2
78
with:
79
generate_release_notes: true
- files: |
- dist/syncbot-linux-amd64
- dist/syncbot-linux-arm64
80
- dist/syncbot-darwin-amd64
81
- dist/syncbot-darwin-arm64
82
- dist/syncbot-windows-amd64.exe
83
- dist/syncbot-windows-arm64.exe
84
- dist/checksums.txt
+ files: dist/*
+ fail_on_unmatched_files: true
0 commit comments