-
Notifications
You must be signed in to change notification settings - Fork 7
42 lines (38 loc) · 1.29 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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: |
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"