Skip to content

Commit

Permalink
fix check
Browse files Browse the repository at this point in the history
  • Loading branch information
jburel committed Dec 1, 2020
1 parent 7e0a008 commit 9acd659
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
run: echo ::set-output name=SOURCE_TAG::${GITHUB_REF#refs/tags/v}
shell: bash
- name: Create GitHub Release
if: startsWith(matrix.os, 'ubuntu') && startsWith(github.ref, 'refs/tags') && ${{ env.publish_target }} == 'github' && matrix.java == '1.8'
if: startsWith(matrix.os, 'ubuntu') && startsWith(github.ref, 'refs/tags') && env.publish_target == 'github' && matrix.java == '1.8'
id: create_release
uses: actions/create-release@v1
env:
Expand All @@ -53,7 +53,7 @@ jobs:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
- name: Upload Release Asset to GiHub
if: startsWith(matrix.os, 'ubuntu') && startsWith(github.ref, 'refs/tags') && ${{ env.publish_target }} == 'github' && matrix.java == '1.8'
if: startsWith(matrix.os, 'ubuntu') && startsWith(github.ref, 'refs/tags') && env.publish_target == 'github' && matrix.java == '1.8'
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
Expand Down

0 comments on commit 9acd659

Please sign in to comment.