Skip to content

bump version to 1.1.0 #3

bump version to 1.1.0

bump version to 1.1.0 #3

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
include:
- target: x86_64-apple-darwin
os: macos-latest
name: darwin_amd64
- target: aarch64-apple-darwin
os: macos-latest
name: darwin_arm64
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
name: linux_amd64
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
name: linux_arm64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- name: Install cross-compilation tools (Linux ARM64)
if: matrix.target == 'aarch64-unknown-linux-gnu'
run: |
sudo apt-get update
sudo apt-get install -y gcc-aarch64-linux-gnu
echo "CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=aarch64-linux-gnu-gcc" >> $GITHUB_ENV
- name: Build
run: cargo build --release --target ${{ matrix.target }}
- name: Package
run: |
cd target/${{ matrix.target }}/release
tar -czvf ../../../moji_${{ matrix.name }}.tar.gz moji
cd ../../..
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: moji_${{ matrix.name }}
path: moji_${{ matrix.name }}.tar.gz
release:
needs: build
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
merge-multiple: true
- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: artifacts/*.tar.gz
generate_release_notes: true