v2.2.0 Feature release #40
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: "Build for macos arm64" | |
on: | |
release: | |
types: [created] | |
jobs: | |
release: | |
name: release macos arm64 | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Rust | |
uses: hecrj/setup-rust-action@v1.4.0 | |
with: | |
rust-version: stable | |
- name: Compile | |
shell: bash | |
run: | | |
cargo clean | |
cargo build --release | |
- run: cp target/release/pullauta . | |
- name: 'Compress binaries' | |
if: true | |
uses: a7ul/tar-action@v1.1.2 | |
with: | |
command: c | |
files: | | |
pullauta | |
LICENSE | |
README.md | |
osm.txt | |
fastighetskartan.txt | |
outPath: '${{ runner.temp }}/karttapullautin-arm64-macos.tar.gz' | |
- name: 'Release binaries' | |
if: true | |
uses: pragmatrix/release-action@v1.11.1-rs | |
with: | |
allowUpdates: true | |
replacesArtifacts: true | |
artifacts: '${{ runner.temp }}/karttapullautin-arm64-macos.tar.gz' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
artifactErrorsFailBuild: true | |
prerelease: true |