-
-
Notifications
You must be signed in to change notification settings - Fork 12
62 lines (53 loc) · 1.8 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: release
on:
push:
tags: 'v*'
permissions:
contents: write
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
- run: rustup update --no-self-update stable && rustup default stable
- run: cargo fmt --check
- run: cargo build --release --locked
- name: check version
run: ./target/release/macmon -V | grep "${GITHUB_REF_NAME#v}" || exit 1
- name: archiving
id: archive
run: |
cp target/release/macmon macmon
tar czf macmon-${{ github.ref_name }}.tar.gz readme.md LICENSE macmon
ls -lah | grep macmon
- name: Generate a changelog
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
id: git-cliff
uses: orhun/git-cliff-action@v4
with:
args: --latest
- uses: softprops/action-gh-release@v2
with:
body: ${{ steps.git-cliff.outputs.content }}
files: macmon-${{ github.ref_name }}.tar.gz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: mislav/bump-homebrew-formula-action@v3
with:
homebrew-tap: vladkens/homebrew-tap
formula-name: macmon
formula-path: macmon.rb
commit-message: "{{formulaName}} {{version}}"
download-url: https://github.com/vladkens/macmon/releases/download/${{ github.ref_name }}/macmon-${{ github.ref_name }}.tar.gz
env:
COMMITTER_TOKEN: ${{ secrets.HOMEBREW_REPO_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}