Skip to content

Commit

Permalink
Fix github ci artifact paths after submodule introduction
Browse files Browse the repository at this point in the history
  • Loading branch information
sfuhrm committed Nov 9, 2024
1 parent 7b37e03 commit 3391c20
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: binary
path: target/radiorecorder-${{ steps.version.outputs.version }}-bin.tar.gz
path: radiorecorder/target/radiorecorder-${{ steps.version.outputs.version }}-bin.tar.gz
run:
needs: build
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: jdk-${{ matrix.java }}
path: ./target/radiorecorder-*.jar
path: radiorecorder/target/radiorecorder-*.jar
8 changes: 4 additions & 4 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,22 +38,22 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: packages
path: target/radiorecorder-${{ steps.version.outputs.version }}-bin.tar.gz
path: radiorecorder/target/radiorecorder-${{ steps.version.outputs.version }}-bin.tar.gz

- uses: actions/upload-artifact@v3
with:
name: packages
path: target/radiorecorder-${{ steps.version.outputs.version }}-bin.tar.bz2
path: radiorecorder/target/radiorecorder-${{ steps.version.outputs.version }}-bin.tar.bz2

- uses: actions/upload-artifact@v3
with:
name: packages
path: target/radiorecorder-${{ steps.version.outputs.version }}-bin.zip
path: radiorecorder/target/radiorecorder-${{ steps.version.outputs.version }}-bin.zip

- uses: actions/upload-artifact@v3
with:
name: build
path: target/radiorecorder-${{ steps.version.outputs.version }}-app
path: radiorecorder/target/radiorecorder-${{ steps.version.outputs.version }}-app

jpackage_linux:
needs: build
Expand Down

0 comments on commit 3391c20

Please sign in to comment.