Skip to content

Commit

Permalink
Adds step to upload and download build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
dingfeli committed Sep 17, 2024
1 parent c66a378 commit 498322a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,22 @@ jobs:
run: |
cd plugin/webview
npm run build-ui
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: build-ui-artifacts
path: plugin/webview/build/
- name: Setup Maven Action
uses: s4u/[email protected]
with:
checkout-fetch-depth: 0
java-version: 17
java-distribution: temurin
maven-version: 3.9.8
- name: Download build artifacts
uses: actions/download-artifact@v3
with:
name: build-ui-artifacts
path: plugin/webview/build
- name: Build with Maven
run: mvn -B package --file pom.xml

0 comments on commit 498322a

Please sign in to comment.