Skip to content

Commit

Permalink
fix publish actions more.
Browse files Browse the repository at this point in the history
  • Loading branch information
uakihir0 committed Dec 29, 2023
1 parent 2ac2da1 commit 27d8419
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ jobs:
- core
- stream

env:
RUN_TARGET: ${{ matrix.target }}

permissions:
contents: read
packages: write
Expand All @@ -32,12 +29,15 @@ jobs:
- name: Build with Gradle
uses: gradle/gradle-build-action@v2.6.0
with:
arguments: "${RUN_TARGET}:build -x core:jvmTest"
arguments: ${RUN_TARGET}:build -x core:jvmTest
env:
RUN_TARGET: ${{ matrix.target }}

- name: Publish to Repsy
uses: gradle/gradle-build-action@v2.6.0
with:
arguments: "${RUN_TARGET}:publish -x core:jvmTest"
arguments: ${RUN_TARGET}:publish -x core:jvmTest
env:
USERNAME: ${{ secrets.REPSY_USERNAME }}
PASSWORD: ${{ secrets.REPSY_PASSWORD }}
RUN_TARGET: ${{ matrix.target }}

0 comments on commit 27d8419

Please sign in to comment.