Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-wasi authored Jan 9, 2025
1 parent 397a1f7 commit 2a52d51
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,15 @@ jobs:
path: backend/target/*.jar

publish:
needs: build
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Download JAR artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: app-jar
path: .
Expand All @@ -60,4 +61,4 @@ jobs:
jar_file=$(ls *.jar)
new_name="${version}.jar"
mv "$jar_file" "$new_name"
gh release create "$version" "$new_name" --notes "Release $version"
gh release create "$version" "$new_name" --notes "Release $version"

0 comments on commit 2a52d51

Please sign in to comment.