always run dry-run job #205
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Dry Run | |
on: | |
push | |
jobs: | |
release-dry-run: | |
runs-on: ubuntu-latest | |
env: | |
CXXFLAGS: "-stdc++11" | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.PAT }} | |
- name: Install Knope | |
uses: knope-dev/action@v1 | |
with: | |
version: 0.6.1 # Test before updating, breaking changes likely: https://github.com/knope-dev/action#install-latest-version | |
- name: Display Pending Release | |
run: knope release --dry-run | |
env: | |
GITHUB_TOKEN: ${{ secrets.PAT }} | |
- name: Install protoc | |
uses: arduino/setup-protoc@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
version: '3.20.1' | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- run: cargo publish --dry-run --manifest-path=crates/lib/Cargo.toml --token ${{ secrets.CRATES_IO_TOKEN }} | |
- run: cargo publish --dry-run --manifest-path=crates/python/Cargo.toml --token ${{ secrets.CRATES_IO_TOKEN }} |