v0.0.70 #73
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: Upload self-contained binaries | |
on: | |
release: | |
types: [published] | |
jobs: | |
rust-binaries: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [macos-latest, ubuntu-20.04] | |
platform: [x86_64] | |
include: | |
- os: macos-latest | |
platform: x86_64 | |
- os: macos-latest | |
platform: aarch64 | |
- os: ubuntu-20.04 | |
platform: x86_64 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- run: rustup component add rustfmt | |
- name: Build and upload artifact | |
run: ./.github/workflows/build_binaries.sh ${{ matrix.os }} ${{ matrix.platform }} merge-app puller-app pusher-app | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |