File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 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
77
88if [ $RUNNER_OS = Windows ]; then
99 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
1111fi
1212
1313export GPR_PROJECT_PATH=$prefix /share/gpr:\
Original file line number Diff line number Diff line change 1414 name : Build and deploy
1515 strategy :
1616 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
1919 os : [macos-11, ubuntu-20.04, windows-latest]
2020 runs-on : ${{ matrix.os }}
2121 steps :
@@ -119,13 +119,13 @@ jobs:
119119 if [[ ${GITHUB_REF##*/} = 2*.[0-9]*.[0-9]* ]]; then
120120 TAG="${GITHUB_REF##*/}"
121121 .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
123123 else
124124 TAG="$DEFAULT_TAG"
125125 fi
126126 echo "TAG=$TAG" >> $GITHUB_ENV
127127 .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
129129 - name : Archive ALS vsix
130130 uses : actions/upload-artifact@v2
131131 with :
You can’t perform that action at this time.
0 commit comments