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 fe16ced commit 78d2d9dCopy full SHA for 78d2d9d
.github/workflows/rust.yml
@@ -60,6 +60,15 @@ jobs:
60
with:
61
submodules: true
62
- run: cargo nbuild test
63
+ prep-release:
64
+ runs-on: ubuntu-latest
65
+ needs: [binaries, linux-library, windows-library, run-tests]
66
+ steps:
67
+ - run: mkdir ./release
68
+ - uses: actions/download-artifact@v4
69
+ with:
70
+ path: ./release
71
+ - run: ls -lR ./release
72
release:
73
runs-on: ubuntu-latest
74
needs: [binaries, linux-library, windows-library, run-tests]
0 commit comments