Build release binaries #37
Workflow file for this run
This file contains hidden or 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 release binaries | |
| on: | |
| push: | |
| tags: | |
| - v* | |
| jobs: | |
| build-x86_64-apple-darwin: | |
| permissions: | |
| contents: write | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: Swatinem/rust-cache@v2 | |
| - run: rustup target add x86_64-apple-darwin | |
| - run: cargo build --target x86_64-apple-darwin --release | |
| - run: ./target/x86_64-apple-darwin/release/twips --help | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: twips.x86_64-apple-darwin | |
| path: ./target/x86_64-apple-darwin/release/twips | |
| - run: mv ./target/x86_64-apple-darwin/release/twips twips.${{ github.ref_name }}.x86_64-apple-darwin | |
| - uses: softprops/action-gh-release@v2 | |
| with: | |
| files: twips.${{ github.ref_name }}.x86_64-apple-darwin | |
| build-aarch64-apple-darwin: | |
| permissions: | |
| contents: write | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: Swatinem/rust-cache@v2 | |
| - run: rustup toolchain list | |
| - run: make build-rust | |
| - run: ./target/release/twips --help | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: twips.aarch64-apple-darwin | |
| path: ./target/release/twips | |
| - run: mv ./target/release/twips twips.${{ github.ref_name }}.aarch64-apple-darwin | |
| - uses: softprops/action-gh-release@v2 | |
| with: | |
| files: twips.${{ github.ref_name }}.aarch64-apple-darwin | |
| build-x86_64-pc-windows: | |
| permissions: | |
| contents: write | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: Swatinem/rust-cache@v2 | |
| - run: rustup toolchain list | |
| - run: make build-rust | |
| - run: ./target/release/twips.exe --help | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: twips.x86_64-pc-windows | |
| path: ./target/release/twips.exe | |
| - run: mv ./target/release/twips.exe twips.${{ github.ref_name }}.x86_64-pc-windows | |
| - uses: softprops/action-gh-release@v2 | |
| with: | |
| files: twips.${{ github.ref_name }}.x86_64-pc-windows | |
| build-aarch64-pc-windows: | |
| permissions: | |
| contents: write | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: Swatinem/rust-cache@v2 | |
| - run: rustup toolchain list | |
| - run: make build-rust | |
| - run: ./target/release/twips.exe --help | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: twips.aarch64-pc-windows | |
| path: ./target/release/twips.exe | |
| - run: mv ./target/release/twips.exe twips.${{ github.ref_name }}.aarch64-pc-windows | |
| - uses: softprops/action-gh-release@v2 | |
| with: | |
| files: twips.${{ github.ref_name }}.aarch64-pc-windows | |
| build-x86_64-unknown-linux-gnu: | |
| permissions: | |
| contents: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: Swatinem/rust-cache@v2 | |
| - run: rustup toolchain list | |
| - run: make build-rust | |
| - run: ./target/release/twips --help | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: twips.x86_64-unknown-linux-gnu | |
| path: ./target/release/twips | |
| - run: mv ./target/release/twips twips.${{ github.ref_name }}.x86_64-unknown-linux-gnu | |
| - uses: softprops/action-gh-release@v2 | |
| with: | |
| files: twips.${{ github.ref_name }}.x86_64-unknown-linux-gnu | |
| build-aarch64-unknown-linux-gnu: | |
| permissions: | |
| contents: write | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: Swatinem/rust-cache@v2 | |
| - run: rustup toolchain list | |
| - run: make build-rust | |
| - run: ./target/release/twips --help | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: twips.aarch64-unknown-linux-gnu | |
| path: ./target/release/twips | |
| - run: mv ./target/release/twips twips.${{ github.ref_name }}.aarch64-unknown-linux-gnu | |
| - uses: softprops/action-gh-release@v2 | |
| with: | |
| files: twips.${{ github.ref_name }}.aarch64-unknown-linux-gnu |