v0.3.0 #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
- uses: softprops/action-gh-release@v2 | |
with: | |
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 }} |