Skip to content

Commit

Permalink
chore: fix release workflow in order to include correct atrifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
MDeLuise committed Aug 27, 2024
1 parent f4efa8f commit 1e6a43a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ jobs:
path: .

- name: Rename backend jar to server.jar
run: mv ./backend/target/*.jar ./server.jar
run: mv *.jar ./server.jar

- name: Load frontend files
uses: actions/download-artifact@v4
Expand All @@ -191,7 +191,7 @@ jobs:
path: .

- name: Create client.tar.gz
run: tar -czf client.tar.gz -C ./frontend/build/web .
run: tar -czf client.tar.gz -C ./web .

- name: Create Draft Release
uses: softprops/action-gh-release@v2
Expand Down

0 comments on commit 1e6a43a

Please sign in to comment.