Skip to content

release

release #30

Workflow file for this run

name: release
permissions:
pull-requests: write
contents: write
on:
push:
branches: [main]
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
outputs:
pr-branch: echo ${{ steps.release-plz.outputs.pr }} | jq '.head_branch'
pr-created: ${{ steps.release-plz.outputs.prs_created }}
steps:
- uses: actions/checkout@v4
with:
# release-plz can create release notes and update changelogs based on (conventional) commits. But only if all the history is fetched
fetch-depth: 0
- name: Install rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Run release-plz
id: release-plz
uses: MarcoIeni/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
- uses: fregante/[email protected]
- name: install dprint
run: curl -fsSL https://dprint.dev/install.sh | sh -s 0.47.2 > /dev/null 2>&1
- name: fmt
run: |

Check failure on line 36 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 36, Col: 14): Unexpected symbol: ')'. Located at position 51 within expression: fromJSON(steps.release-plz.outputs.pr).head_branch)
pr-branch="${{ fromJSON(steps.release-plz.outputs.pr).head_branch) }}"
git pull
git checkout "$pr_branch"
$HOME/.dprint/bin/dprint fmt
git commit -am 'chore: format files'
git push origin "$pr_branch"