We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85515a1 commit 8d03651Copy full SHA for 8d03651
1 file changed
.github/workflows/crates.yml
@@ -5,19 +5,12 @@ name: crates.io
5
on:
6
workflow_dispatch:
7
8
-# A workflow run is made up of one or more jobs that can run sequentially or in parallel
9
jobs:
10
build:
11
- # The type of runner that the job will run on
+
12
runs-on: ubuntu-latest
13
14
- # Steps represent a sequence of tasks that will be executed as part of the job
15
steps:
16
- uses: actions/checkout@v2
17
- - uses: actions-rs/toolchain@v1
18
- with:
19
- toolchain: stable
20
- override: true
21
- - uses: katyo/publish-crates@v1
22
23
- dry-run: true
+ - name: publish dry-run
+ run: cargo publish --dry-run --verbose
0 commit comments