- Fix cases where executable and crate name differ. #14
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
# Build using Alire. | |
name: Build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
permissions: write-all | |
jobs: | |
build: | |
name: CI on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, ubuntu-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: ada-actions/toolchain | |
uses: ada-actions/toolchain@ce2021 | |
with: | |
distrib: community | |
target: native | |
- name: alire-project/setup-alire | |
uses: alire-project/setup-alire@v2 | |
- name: Update apt | |
if: runner.os == 'Linux' | |
run: sudo apt-get update | |
- name: Update | |
run: alr index --update-all | |
- name: Build | |
run: alr --non-interactive build | |
release: | |
name: Continuous AppImage | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: ada-actions/toolchain | |
uses: ada-actions/toolchain@ce2021 | |
with: | |
distrib: community | |
target: native | |
- name: alire-project/setup-alire | |
uses: alire-project/setup-alire@v2 | |
with: | |
branch: "master" | |
- name: Update apt | |
run: sudo apt-get update | |
- name: Update | |
run: alr index --update-all | |
- name: Build | |
run: alr --non-interactive build | |
- name: Build AppImage | |
run: VERSION=$(printf "dev-`git -C . rev-parse --short HEAD`") bin/alr2appimage | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: alr2appimage*.AppImage | |
prerelease: true | |
tag_name: continuous |