fix build again #10
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: | |
branches: | |
- main | |
jobs: | |
build: | |
strategy: | |
matrix: | |
include: | |
- os: macos-latest | |
target: aarch64-apple-darwin | |
name: darwin-arm64 | |
- os: macos-latest | |
target: x86_64-apple-darwin | |
name: darwin-x64 | |
- os: ubuntu-latest | |
target: x86_64-unknown-linux-gnu | |
name: linux-x64 | |
- os: ubuntu-latest | |
target: aarch64-unknown-linux-gnu | |
name: linux-arm64 | |
- os: windows-latest | |
target: x86_64-pc-windows-msvc | |
name: win32-x64 | |
name: Build ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: ${{ matrix.target }} | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4.0.0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 22.x | |
cache: pnpm | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Install cross | |
run: cargo install cross | |
- name: Build binary | |
run: cross build --release --target ${{ matrix.target }} | |
- name: Prepare package | |
shell: bash | |
run: | | |
mkdir -p packages/${{ matrix.name }}/bin | |
if [ "${{ matrix.name }}" = "win32-x64" ]; then | |
cp target/${{ matrix.target }}/release/swagit.exe packages/${{ matrix.name }}/bin | |
else | |
cp target/${{ matrix.target }}/release/swagit packages/${{ matrix.name }}/bin | |
fi | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.name }} | |
path: packages/${{ matrix.name }}/bin | |
compression-level: 0 | |
release: | |
name: Create Release | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4.0.0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 22.x | |
cache: pnpm | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Download all artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
path: npm | |
pattern: '*' | |
merge-multiple: true | |
- name: Create Release Pull Request or Publish to npm | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
publish: pnpm release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |