Skip to content

Change windows by macos, how to use AppImage and supported mime-types #6

Change windows by macos, how to use AppImage and supported mime-types

Change windows by macos, how to use AppImage and supported mime-types #6

Workflow file for this run

# Build using Alire.
name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: CI on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, 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@v1
- 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=${GITHUB_BASE_REF:-${GITHUB_REF#refs/heads/}} make AppImage
- name: Create Release
uses: ncipollo/release-action@v1
with:
allowUpdates: True
tag: continuous
name: Continuous build
prerelease: True
artifacts: "Open_URL*.AppImage"
token: ${{ secrets.GITHUB_TOKEN }}