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 f631eca commit a032cd3Copy full SHA for a032cd3
.github/workflows/release.yml
@@ -36,15 +36,16 @@ jobs:
36
- name: Run tests
37
run: cargo test --release --verbose
38
39
- - name: Login to crates.io
40
- run: cargo login ${{ secrets.CARGO_REGISTRY_TOKEN }}
41
-
42
- name: Dry run publish (check only)
43
run: cargo workspaces publish --dry-run --yes --no-git-commit
+ env:
+ CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
44
45
- name: Publish to crates.io
46
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
47
run: cargo workspaces publish --yes --no-git-commit
48
49
50
create-release:
51
name: Create GitHub Release
0 commit comments