Skip to content

Commit

Permalink
修复window进入工作目录失败问题
Browse files Browse the repository at this point in the history
  • Loading branch information
stars-one committed Jan 4, 2024
1 parent a743af4 commit 33e8e1a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,16 +69,19 @@ jobs:
- name: Set working directory
run: |
echo '${{ github.workspace }}'
cd "${{ github.workspace }}"
# Build Desktop Uber Jar application
- name: Desktop Uber Jar
run: ./gradlew packageUberJarForCurrentOS
run: |
cd "${{ github.workspace }}"
./gradlew packageUberJarForCurrentOS
# Build Desktop Packaged application
- name: Desktop App Package
run: ./gradlew packageMsi
run: |
cd "${{ github.workspace }}"
./gradlew packageMsi
# Create a Draft Release
- name: Draft Release
Expand Down

0 comments on commit 33e8e1a

Please sign in to comment.