We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 279cba8 commit da931d4Copy full SHA for da931d4
1 file changed
.github/workflows/deploy-linux-appimage.yml
@@ -1,22 +1,20 @@
1
-on:
2
- workflow_dispatch:
3
- push:
4
- # Sequence of patterns matched against refs/tags
5
- tags:
6
- - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
+# on:
+# workflow_dispatch:
+# push:
+# # Sequence of patterns matched against refs/tags
+# tags:
+# - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
7
8
jobs:
9
deploy:
10
runs-on: ubuntu-latest
11
+ container:
12
+ image: ghcr.io/${{ github.repository }}/ubuntu:develop
13
steps:
14
- name: Checkout code
15
uses: actions/checkout@v2
16
with:
17
submodules: true
- - name: Install package
- run: |
18
- sudo apt-get update
19
- sudo apt-get -y install qtbase5-dev qt3d5-dev libqt5svg5-dev freeglut3-dev libabsl-dev
20
- name: Build and test
21
run: ci/buildappimage.sh
22
- name: Create Release
0 commit comments