We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f2feee commit c3bf99fCopy full SHA for c3bf99f
1 file changed
.github/workflows/CreateRelease.yml
@@ -104,9 +104,21 @@ jobs:
104
env:
105
GH_TOKEN: ${{ github.token }}
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
116
- name: Publish to crates.io
117
if: ${{ contains(github.ref, 'refs/heads/release/') }}
- run: cargo publish hyperlight-wasm
118
119
120
+ cargo publish -p hyperlight-wasm-aot
121
+ cargo publish -p hyperlight-wasm
122
123
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_PUBLISH_TOKEN }}
124
0 commit comments