Skip to content

Commit

Permalink
Fix gradle properties.
Browse files Browse the repository at this point in the history
  • Loading branch information
aoli-al committed Dec 22, 2024
1 parent 333c741 commit 81aca9e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ jobs:
echo "Nightly version: $NIGHTLY_VERSION"
- name: build the repository
run: ./gradlew build
- name: publish to github package repository
- name: publish to github package repository (macOS)
if: runner.os == 'macOS'
run: ./gradlew :jvmti:publish -Pversion=$VERSION
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: publish to github package repository
- name: publish to github package repository (Linux)
if: runner.os == 'Linux'
run: ./gradlew publish -Pversion=$VERSION
env:
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
kotlin.code.style=official
group = org.pastalab.fray
version = 0.1.6-SNAPSHOT
group=org.pastalab.fray
version=0.1.6-SNAPSHOT

0 comments on commit 81aca9e

Please sign in to comment.