Merge pull request #51 from rigetti/50-generate-documentation #27
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: Prepare Release (Dry Run) | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release-dry-run: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.PAT }} | |
- name: Install Knope | |
uses: knope-dev/action@v1 | |
with: | |
version: 0.7.0 # 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 }} |