Skip to content

Commit

Permalink
- disable linux and windows builds
Browse files Browse the repository at this point in the history
  • Loading branch information
mikepenz committed Jun 17, 2024
1 parent e832677 commit f1dfc68
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
os: [macOS-latest]

runs-on: ${{matrix.os}}

Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
run: ./gradlew publishAllPublicationsToMavenRepository --no-daemon

- name: Publish the windows artifact
if: matrix.os == 'windows-latest'
if: false && matrix.os == 'windows-latest'
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.NEXUS_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.NEXUS_PASSWORD }}
Expand All @@ -65,7 +65,7 @@ jobs:
run: ./gradlew publishMingwPublicationToMavenRepository

- name: Publish the linux artifact
if: matrix.os == 'ubuntu-latest'
if: false && matrix.os == 'ubuntu-latest'
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.NEXUS_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.NEXUS_PASSWORD }}
Expand Down

0 comments on commit f1dfc68

Please sign in to comment.