Skip to content

Commit

Permalink
streamlined actions
Browse files Browse the repository at this point in the history
  • Loading branch information
maniospas committed Aug 1, 2024
1 parent c0b3d17 commit 99e6400
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@ jobs:
- name: Build with Maven
run: mvn clean package -f ./JGNN/pom.xml -DskipTests

- name: Archive JAR
uses: actions/upload-artifact@v2
with:
name: JGNN-nightly
path: JGNN/target/*.jar

- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -49,6 +43,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./JGNN/target/JGNN.jar
asset_path: ./JGNN/target/JGNN-nightly.jar
asset_name: JGNN v1.3.${{ github.run_number }}-nightly.jar
asset_content_type: application/java-archive

0 comments on commit 99e6400

Please sign in to comment.