Skip to content

Commit 35bdf6f

Browse files
author
mergerepo
committed
Merge remote branch 'origin/master' into edge
(no-precommit-check no-tn-check)
2 parents ac18f38 + a399ee3 commit 35bdf6f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build-binaries.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ prefix=/tmp/ADALIB_DIR
77

88
if [ $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
1111
fi
1212

1313
export GPR_PROJECT_PATH=$prefix/share/gpr:\

.github/workflows/build-binaries.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
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:

0 commit comments

Comments
 (0)