File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed
Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 11on :
22 workflow_dispatch :
33 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
4+ branches :
5+ - " **"
6+ # # Sequence of patterns matched against refs/tags
7+ # tags:
8+ # - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
79
810jobs :
911 deploy :
1012 runs-on : ubuntu-latest
13+ container :
14+ image : ghcr.io/${{ github.repository }}/ubuntu:develop
1115 steps :
1216 - name : Checkout code
1317 uses : actions/checkout@v2
1418 with :
1519 submodules : true
16- - name : Install package
17- run : |
18- sudo apt-get update
19- sudo apt-get -y install qtbase5-dev qt3d5-dev libqt5svg5-dev freeglut3-dev libabsl-dev
20+ fetch-depth : 0
2021 - name : Build and test
2122 run : ci/buildappimage.sh
2223 - name : Create Release
Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ trap cleanup EXIT
2525REPO_ROOT=$( readlink -f $( dirname $( dirname $0 ) ) )
2626OLD_CWD=$( readlink -f .)
2727
28+ git config --global --add safe.directory $REPO_ROOT
29+
2830# generate release name
2931COMMIT=$( git rev-parse --short HEAD)
3032TAG=$( git describe --tags)
You can’t perform that action at this time.
0 commit comments