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 65c71ed commit be9cb1bCopy full SHA for be9cb1b
1 file changed
.github/workflows/release.yaml
@@ -65,9 +65,20 @@ jobs:
65
name: ${{ steps.build-crate.outputs.file-name }}
66
path: ${{ steps.build-crate.outputs.file-path }}
67
68
- - name: Publish archives and packages
+ publish_release:
69
+ name: Create GitHub Release
70
+ needs: build_release
71
+ runs-on: ubuntu-latest
72
+ steps:
73
+ - name: Download all artifacts
74
+ uses: actions/download-artifact@v4
75
+ with:
76
+ path: artifacts
77
+
78
+ - name: List downloaded artifacts
79
+ run: find artifacts -type f | sort
80
81
+ - name: Publish GitHub Release
82
uses: softprops/action-gh-release@v1
83
with:
- files: |
- ${{ steps.build-crate.outputs.file-path }}
- if: startsWith(github.ref, 'refs/tags/')
84
+ files: artifacts/**/*
0 commit comments