Skip to content

Commit

Permalink
Fix actions artifact upload step
Browse files Browse the repository at this point in the history
  • Loading branch information
booky10 committed Jul 7, 2023
1 parent ba7450b commit ac53819
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,16 @@ jobs:
- name: build
run: ./gradlew build --no-daemon

- name: capture build artifacts
- name: capture fabric build artifacts
uses: actions/upload-artifact@v3
with:
name: stackdeobf-artifacts
path: build/libs
name: stackdeobf-fabric-artifacts
path: fabric/build/libs
if-no-files-found: error

- name: capture web build artifacts
uses: actions/upload-artifact@v3
with:
name: stackdeobf-web-artifacts
path: web/build/libs
if-no-files-found: error

0 comments on commit ac53819

Please sign in to comment.