Skip to content

Commit

Permalink
Fixed errors in the workflow config
Browse files Browse the repository at this point in the history
  • Loading branch information
puneetbehl committed Dec 18, 2023
1 parent 097f99f commit 6191245
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
echo "has_release_drafter=${has_release_drafter}" >> $GITHUB_OUTPUT
- name: Extract branch name
id: extract_branch
run: echo "value=${GITHUB_REF:11}" >> $GITHUB_OUTPUT
run: echo "value=${{GITHUB_REF:11}}" >> $GITHUB_OUTPUT
# If it has release drafter:
- uses: release-drafter/release-drafter@v5
if: steps.check_release_drafter.outputs.has_release_drafter == 'true'
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
id: release_version
run: |
echo "Update grailsVersion to ${{steps.release_version.outputs.value}}"
sed -i "s/^grailsVersion.*$/grailsVersion\=${GITHUB_REF:11}/" gradle.properties
echo "value=${GITHUB_REF:11}" >> $GITHUB_OUTPUT
sed -i "s/^grailsVersion.*$/grailsVersion\=${{GITHUB_REF:11}}/" gradle.properties
echo "value=${{GITHUB_REF:11}}" >> $GITHUB_OUTPUT
- uses: stefanzweifel/[email protected]
with:
commit_message: Update grailsVersion to ${{ steps.release_version.outputs.value }}
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: v${GITHUB_REF:11}
ref: v${{GITHUB_REF:11}}
token: ${{ secrets.GH_TOKEN }}
- name: Login
uses: google-github-actions/setup-gcloud@v0
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: v${GITHUB_REF:11}
ref: v${{GITHUB_REF:11}}
token: ${{ secrets.GH_TOKEN }}
- name: Login
uses: google-github-actions/setup-gcloud@v0
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: v${GITHUB_REF:11}
ref: v${{GITHUB_REF:11}}
token: ${{ secrets.GH_TOKEN }}
- name: Setup GraalVM CE
uses: graalvm/[email protected]
Expand Down Expand Up @@ -283,7 +283,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: v${GITHUB_REF:11}
ref: v${{GITHUB_REF:11}}
token: ${{ secrets.GH_TOKEN }}
- name: Setup GraalVM CE
uses: graalvm/[email protected]
Expand Down Expand Up @@ -330,7 +330,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: v${GITHUB_REF:11}
ref: v${{GITHUB_REF:11}}
token: ${{ secrets.GH_TOKEN }}
- name: Setup GraalVM CE
uses: graalvm/[email protected]
Expand Down Expand Up @@ -385,7 +385,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: v${GITHUB_REF:11}
ref: v${{GITHUB_REF:11}}
token: ${{ secrets.GH_TOKEN }}
- name: Grails SDK Minor Release
if: contains(needs.build.outputs.release_version, 'M')
Expand Down

0 comments on commit 6191245

Please sign in to comment.