Skip to content

Commit cb64688

Browse files
committed
Wire crates.io composite action in pre-release.yml
1 parent 60dd87d commit cb64688

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/pre-release.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,3 +219,25 @@ jobs:
219219
loki_ingest_host: ${{ vars.LOKI_INGEST_HOST }}
220220
loki_ingest_username: ${{ secrets.LOKI_INGEST_USERNAME }}
221221
loki_ingest_password: ${{ secrets.LOKI_INGEST_PASSWORD }}
222+
223+
publish-crate-test:
224+
strategy:
225+
fail-fast: false
226+
matrix:
227+
package: [ mithril-stm ]
228+
229+
runs-on: ubuntu-22.04
230+
steps:
231+
- name: Checkout sources
232+
uses: actions/checkout@v3
233+
234+
- name: Install stable toolchain
235+
uses: dtolnay/rust-toolchain@master
236+
with:
237+
toolchain: stable
238+
239+
- name: Publish package to crates.io
240+
uses: ./.github/workflows/actions/publish-crate-package
241+
with:
242+
dry_run: "true"
243+
package: ${{ matrix.package }}

0 commit comments

Comments
 (0)