Create sailfish CI #4
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: SailfishOS build | |
on: [push, pull_request] | |
env: | |
RELEASE: latest | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Prepare | |
run: mkdir output | |
- name: Build aarch64 | |
id: build_aarch64 | |
uses: coderus/github-sfos-build@master | |
with: | |
release: ${{ env.RELEASE }} | |
arch: aarch64 | |
- name: Upload build result | |
uses: actions/upload-artifact@v2 | |
with: | |
name: output-rpms | |
path: RPMS |