Skip to content

Commit

Permalink
Update artifact step of CI
Browse files Browse the repository at this point in the history
  • Loading branch information
programLyrique committed Jan 14, 2025
1 parent 168cb37 commit d5a1e39
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/devcontainer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

artifact:
runs-on: ubuntu-latest

needs: build-devcontainer
steps:
- uses: actions/checkout@v3
- name: Build artifact
Expand All @@ -52,15 +52,16 @@ jobs:
- run: mkdir staging && cp target/*.jar staging
working-directory: server
- name: Upload snapshot as artifact
uses: actions/upload-artifact@v3
working-directory: server
uses: actions/upload-artifact@v4
with:
name: snapshot
path: target/*-SNAPSHOT.jar
path: server/target/*-SNAPSHOT.jar
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
- name: Update dependency graph
working-directory: server
uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6
uses: advanced-security/maven-dependency-submission-action@v4
with:
directory: server

test:
runs-on: ubuntu-latest
needs: build-devcontainer
Expand Down

0 comments on commit d5a1e39

Please sign in to comment.