Skip to content

release

release #28

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
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 }}
- name: debug
run: |
echo ${{ steps.release-plz.outputs }}
echo ${{ steps.release-plz.outputs.pr }}
echo ${{ steps.release-plz.outputs.prs }}
- 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: |
git pull
git checkout $(echo ${{ steps.release-plz.outputs.pr }} | jq '.head_branch')
$HOME/.dprint/bin/dprint fmt
git commit -am 'chore: format files'
git push origin