Skip to content

Commit

Permalink
Update build.yml replace "fxthemes" with correct case sensitive "FXTh…
Browse files Browse the repository at this point in the history
…emes"
  • Loading branch information
dukke authored Apr 25, 2024
1 parent 6dbc786 commit 35756de
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ jobs:
gpg-passphrase: MAVEN_GPG_PASSPHRASE

- name: Build and Deploy with Maven
run: mvn --batch-mode --update-snapshots clean deploy -pl fxthemes
run: mvn --batch-mode --update-snapshots clean deploy -pl FXThemes
env:
MAVEN_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

- run: mkdir fxthemes/staging && cp fxthemes/target/*.jar fxthemes/staging
- run: mkdir FXThemes/staging && cp FXThemes/target/*.jar FXThemes/staging
- uses: actions/upload-artifact@v4
with:
name: FXThemes-mac-m1
path: fxthemes/staging
path: FXThemes/staging

build-windows:
runs-on: windows-latest # windows
Expand All @@ -49,16 +49,16 @@ jobs:
gpg-passphrase: MAVEN_GPG_PASSPHRASE

- name: Build and Deploy with Maven
run: mvn --batch-mode --update-snapshots clean deploy -pl fxthemes
run: mvn --batch-mode --update-snapshots clean deploy -pl FXThemes
env:
MAVEN_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

- run: mkdir fxthemes/staging && cp fxthemes/target/*.jar fxthemes/staging
- run: mkdir FXThemes/staging && cp FXThemes/target/*.jar FXThemes/staging
- uses: actions/upload-artifact@v4
with:
name: FXThemes-windows
path: fxthemes/staging
path: FXThemes/staging


0 comments on commit 35756de

Please sign in to comment.