Skip to content

Commit

Permalink
Modify github actions to not to use 233 for now, since it doesn't com…
Browse files Browse the repository at this point in the history
…pile
  • Loading branch information
Walingar committed Oct 10, 2023
1 parent 02c8130 commit ac1ebdb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
matrix:
supported-ij-version:
- 232
- 233
# - 233

steps:
- uses: actions/checkout@v3
Expand All @@ -35,7 +35,7 @@ jobs:
matrix:
supported-ij-version:
- 232
- 233
# - 233

steps:
- uses: actions/checkout@v3
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ jobs:
publish:
name: Publish
runs-on: ubuntu-latest

strategy:
matrix:
supported-ij-version:
- 232
# - 233

steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
Expand All @@ -17,7 +24,7 @@ jobs:
- name: Setup Gradle
run: chmod +x gradlew
- name: Run Gradle
run: ./gradlew publishAllPublicationsToSpaceRepository
run: ./gradlew publishAllPublicationsToSpaceRepository -Psupported.ij.version=${{ matrix.supported-ij-version }}
env:
MAVEN_SPACE_USERNAME: ${{secrets.MAVEN_SPACE_USERNAME}}
MAVEN_SPACE_PASSWORD: ${{secrets.MAVEN_SPACE_PASSWORD}}

0 comments on commit ac1ebdb

Please sign in to comment.