blob: 9df623aa34a8e73d61140d786f5580c0b991984c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
name: Linux Qt 5.12
on: push
jobs:
buildInContainer:
runs-on: ubuntu-latest
container:
image: docker://dirkhh/trusty-qt512:0.7
steps:
- name: checkout sources
run: |
echo $pwd
git clone git://github.com/${GITHUB_REPOSITORY}
cd subsurface
git checkout ${GITHUB_SHA}
- name: run build
run: |
echo $pwd
bash -x subsurface/.github/workflows/in-container-build.sh
- name: publish result
uses: actions/upload-artifact@v1
with:
name: Subsurface-${{github.sha}}.AppImage
path: ./Subsurface.AppImage # /${GITHUB_WORKSPACE}/ in the container is '.' here
|