-
Notifications
You must be signed in to change notification settings - Fork 7
41 lines (39 loc) · 1.28 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
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