fix: Correct link directive (#30) #29
This file contains hidden or 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 Plz | |
| permissions: | |
| pull-requests: write | |
| contents: write | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| release-plz: | |
| name: Release-plz | |
| runs-on: ubuntu-latest | |
| if: ${{ github.repository_owner == 'quantinuum-dev' }} | |
| concurrency: | |
| group: release-plz-${{ github.ref }} | |
| cancel-in-progress: false | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: DeterminateSystems/nix-installer-action@main | |
| - name: Install devenv.sh | |
| run: nix profile install nixpkgs#devenv | |
| - name: Configure git user from GitHub token | |
| uses: release-plz/git-config@59144859caf016f8b817a2ac9b051578729173c4 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_TOKEN }} | |
| - name: Run release-plz | |
| run: | | |
| devenv shell release-plz release-pr -- --git-token ${{ secrets.RELEASE_PLZ_TOKEN }} | |
| devenv shell release-plz release --\ | |
| --git-token ${{ secrets.RELEASE_PLZ_TOKEN }} \ | |
| --token ${{ secrets.CARGO_REGISTRY_TOKEN }} |