File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -24,18 +24,28 @@ jobs:
2424 - uses : dtolnay/rust-toolchain@nightly
2525 - run : cargo +nightly install cargo-packager --locked
2626 - run : cargo +nightly release
27+ - name : Upload artifact
28+ uses : actions/upload-artifact@v3
29+ with :
30+ name : discord-modloader-${{ matrix.platform }}
31+ path : dist/*
2732
2833 release :
2934 needs : package
3035 runs-on : ubuntu-latest
3136 permissions :
3237 contents : write
3338 steps :
39+ - name : Download artifacts
40+ uses : actions/download-artifact@v3
41+ with :
42+ path : dist/
43+ merge-multiple : true
3444 - name : Release
35453646 with :
3747 repo_token : ${{ secrets.GITHUB_TOKEN }}
38- file : dist/discord-modloader_*
48+ file : dist/{PKGBUILD, discord-modloader*}
3949 tag : ${{ github.ref }}
4050 overwrite : true
4151 file_glob : true
You can’t perform that action at this time.
0 commit comments