File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ prefix=/tmp/ADALIB_DIR
7
7
8
8
if [ $RUNNER_OS = Windows ]; then
9
9
prefix=/opt/ADALIB_DIR
10
- mount ` cmd /c cd | cut -d\ : -f1` :/opt /opt
10
+ mount ` cygpath -w $RUNNER_TEMP | cut -d: -f1` :/opt /opt
11
11
fi
12
12
13
13
export GPR_PROJECT_PATH=$prefix /share/gpr:\
Original file line number Diff line number Diff line change 14
14
name : Build and deploy
15
15
strategy :
16
16
fail-fast : false
17
- matrix : # Build debug and production
18
- debug : ['', 'debug' ] # '' if production, 'debug' for debug
17
+ matrix : # Build debug and/or production
18
+ debug : [''] # '' if production, 'debug' for debug
19
19
os : [macos-11, ubuntu-20.04, windows-latest]
20
20
runs-on : ${{ matrix.os }}
21
21
steps :
@@ -119,13 +119,13 @@ jobs:
119
119
if [[ ${GITHUB_REF##*/} = 2*.[0-9]*.[0-9]* ]]; then
120
120
TAG="${GITHUB_REF##*/}"
121
121
.github/workflows/release.sh "" "${{ secrets.GITHUB_TOKEN }}" $TAG
122
- .github/workflows/release.sh "debug" "${{ secrets.GITHUB_TOKEN }}" $TAG
122
+ # .github/workflows/release.sh "debug" "${{ secrets.GITHUB_TOKEN }}" $TAG
123
123
else
124
124
TAG="$DEFAULT_TAG"
125
125
fi
126
126
echo "TAG=$TAG" >> $GITHUB_ENV
127
127
.github/workflows/pack-binaries.sh "" "${{secrets.VSCE_TOKEN}}" "${{secrets.OPENVSX_TOKEN}}" $TAG
128
- .github/workflows/pack-binaries.sh "debug" "${{secrets.VSCE_TOKEN}}" "${{secrets.OPENVSX_TOKEN}}" $TAG
128
+ # .github/workflows/pack-binaries.sh "debug" "${{secrets.VSCE_TOKEN}}" "${{secrets.OPENVSX_TOKEN}}" $TAG
129
129
- name : Archive ALS vsix
130
130
uses : actions/upload-artifact@v2
131
131
with :
You can’t perform that action at this time.
0 commit comments