Skip to content

Commit

Permalink
fix properties
Browse files Browse the repository at this point in the history
  • Loading branch information
joshschriever authored Feb 22, 2023
1 parent f2c2805 commit 26e06b1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,22 @@ jobs:
uses: christian-draeger/[email protected]
with:
path: gordon-plugin/gradle.properties
property: version
properties: version

- name: Create Tag
uses: simpleactions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag: ${{ steps.current_version.outputs.value }}
message: ${{ steps.current_version.outputs.value }}
tag: ${{ steps.current_version.outputs.version }}
message: ${{ steps.current_version.outputs.version }}

- name: Create Release
uses: ncipollo/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag: ${{ steps.current_version.outputs.value }}
tag: ${{ steps.current_version.outputs.version }}
generateReleaseNotes: true
makeLatest: true

Expand All @@ -53,7 +53,7 @@ jobs:
# - id: next_version
# uses: jessicalostinspace/[email protected]
# with:
# semantic-version: ${{ steps.current_version.outputs.value }}
# semantic-version: ${{ steps.current_version.outputs.version }}
# version-type: PATCH

# - name: Bump Version
Expand Down

0 comments on commit 26e06b1

Please sign in to comment.