Skip to content

Commit 76e884e

Browse files
committed
fix: get the source from the release instead of the main branch in repo
1 parent d98321f commit 76e884e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ jobs:
4545
steps:
4646
- name: Check with current version
4747
run: |
48-
# wget "https://github.com/microsoft/java-debug/archive/refs/tags/${VERSION}.tar.gz"
49-
# tar xf "${VERSION}.tar.gz" -C . --strip-components=1
50-
git clone "https://github.com/microsoft/java-debug.git" .
48+
wget "https://github.com/microsoft/java-debug/archive/refs/tags/${VERSION}.tar.gz"
49+
tar xf "${VERSION}.tar.gz" -C . --strip-components=1
50+
# git clone "https://github.com/microsoft/java-debug.git" .
5151
5252
- name: Set up JDK 17
5353
uses: actions/setup-java@v1

0 commit comments

Comments
 (0)