Skip to content

Commit 7ab87f2

Browse files
committed
fixing create release tag script
1 parent 92b57eb commit 7ab87f2

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/create-release-tag.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ jobs:
3030
- name: Create tag
3131
uses: actions/github-script@v7.0.1
3232
with:
33+
github-token: ${{ github.token }}
3334
script: |
3435
echo "Creating tag v${{ env.TAG_NAME }}"
3536
github.rest.git.createRef({
3637
owner: context.repo.owner,
3738
repo: context.repo.repo,
38-
ref: 'refs/tags/v${{ env.TAG_NAME }}',
39-
sha: context.sha
39+
ref: 'refs/tags/v${{ env.TAG_NAME }}'
4040
})

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,3 @@ Initial version of IdentityNow Terraform Provider
1818
* `identitynow_source_schema` - manage Source Schema
1919
* `identitynow_transform` - manage Transform
2020
* `identitynow_workflow` - manage Workflow
21-

0 commit comments

Comments
 (0)