mirror of
https://github.com/denisidoro/navi
synced 2024-12-18 07:53:12 +00:00
45 lines
No EOL
1.5 KiB
YAML
45 lines
No EOL
1.5 KiB
YAML
name: Publish
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
publish:
|
|
name: Publish for ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
# This should work with only the `include`s but it currently doesn't because of this bug:
|
|
# https://github.community/t5/How-to-use-Git-and-GitHub/GitHub-Actions-Matrix-options-dont-work-as-documented/td-p/29558
|
|
target: [x86_64-osx, x86_64-unknown-linux-musl, armv7-unknown-linux-musleabihf, armv7-linux-androideabi, aarch64-linux-android]
|
|
include:
|
|
- os: macos-latest
|
|
target: x86_64-osx
|
|
- os: ubuntu-latest
|
|
target: x86_64-unknown-linux-musl
|
|
- os: ubuntu-latest
|
|
target: armv7-unknown-linux-musleabihf
|
|
- os: ubuntu-latest
|
|
target: armv7-linux-androideabi
|
|
- os: ubuntu-latest
|
|
target: aarch64-linux-android
|
|
|
|
steps:
|
|
- uses: hecrj/setup-rust-action@v1.3.1
|
|
with:
|
|
rust-version: stable
|
|
- uses: actions/checkout@v1
|
|
- name: Build
|
|
run: scripts/action release ${{ matrix.target }}
|
|
- name: Get the version
|
|
id: get_version
|
|
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
|
|
- name: Upload binaries to release
|
|
uses: svenstaro/upload-release-action@v1-release
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
file: target/tar/navi.tar.gz
|
|
tag: ${{ github.ref }}
|
|
asset_name: navi-${{ steps.get_version.outputs.VERSION }}-${{ matrix.target }}.tar.gz |