Skip to content

Commit

Permalink
fix generated url in release process
Browse files Browse the repository at this point in the history
Signed-off-by: Jorge Aguilera <jorge@edn.es>
  • Loading branch information
jagedn committed Jul 2, 2024
1 parent 710ba9a commit bdc6c4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ jobs:
architecture: x64

- name: Compile
run: ./gradlew assemble -P version=${{ github.ref }}
run: ./gradlew assemble -P version=${GITHUB_REF}

- name: Tests
run: ./gradlew check -P version=${{ github.ref }}
run: ./gradlew check -P version=${GITHUB_REF}
env:
GRADLE_OPTS: '-Dorg.gradle.daemon=false'

Expand All @@ -54,7 +54,7 @@ jobs:
architecture: x64

- name: build artifacts
run: ./gradlew clean jsonPlugin -x test -P version=${{ github.ref }}
run: ./gradlew clean jsonPlugin -x test -P version=${GITHUB_REF}

- name: Upload artifact and release
uses: softprops/action-gh-release@v2
Expand Down

0 comments on commit bdc6c4d

Please sign in to comment.