mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
d4ce793540
I have no excuse. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
40 lines
972 B
YAML
40 lines
972 B
YAML
name: Linux Qt 5.12
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
buildInContainer:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: docker://dirkhh/trusty-qt512:0.7
|
|
|
|
steps:
|
|
- name: checkout sources
|
|
uses: actions/checkout@v1
|
|
|
|
- name: run build
|
|
run: |
|
|
cd ..
|
|
bash -x subsurface/.github/workflows/scripts/linux-in-container-build.sh
|
|
|
|
- name: create CI release
|
|
if: github.event_name == 'pull_request'
|
|
uses: ./.github/actions/release
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
GITHUB_REPO: ${{ github.repository }}
|
|
REF: ${{ github.ref }}
|
|
COMMIT: ${{ github.sha }}
|
|
BIN1: ./Subsurface.AppImage
|
|
|
|
- name: copy to transfer.sh
|
|
if: github.event_name == 'push'
|
|
run: |
|
|
apt-get update
|
|
apt-get install -y curl
|
|
curl --upload-file Subsurface.AppImage "https://transfer.sh/Subsurface.AppImage"
|