File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -104,9 +104,21 @@ jobs:
104
104
env :
105
105
GH_TOKEN : ${{ github.token }}
106
106
shell : bash
107
+ - name : Publish dry-run
108
+ if : ${{ contains(github.ref, 'refs/heads/release/') }}
109
+ run : |
110
+ set -euxo pipefail
111
+ cargo publish -p hyperlight-wasm-aot --dry-run
112
+ cargo publish -p hyperlight-wasm --dry-run
113
+ env :
114
+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_PUBLISH_TOKEN }}
115
+ shell : bash
107
116
- name : Publish to crates.io
108
117
if : ${{ contains(github.ref, 'refs/heads/release/') }}
109
- run : cargo publish hyperlight-wasm
118
+ run : |
119
+ set -euxo pipefail
120
+ cargo publish -p hyperlight-wasm-aot
121
+ cargo publish -p hyperlight-wasm
110
122
env :
111
123
CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_PUBLISH_TOKEN }}
112
124
shell : bash
You can’t perform that action at this time.
0 commit comments