Skip to content

Commit 48e1639

Browse files
authored
Merge pull request #25 from opf/ci-automation-attempt
Use proper version name on the release
2 parents 91bbe7f + 48c97a6 commit 48e1639

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

.github/workflows/tag-and-release.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,6 @@ jobs:
3434
echo "tag_exists=false" >> $GITHUB_OUTPUT
3535
fi
3636
37-
- name: Create and push tag
38-
if: steps.check_tag.outputs.tag_exists == 'false'
39-
run: |
40-
TAG="v${{ steps.get_version.outputs.version }}"
41-
git config user.name "github-actions[bot]"
42-
git config user.email "github-actions[bot]@users.noreply.github.com"
43-
git tag "$TAG"
44-
git push origin "$TAG"
45-
4637
- name: Setup Node
4738
if: steps.check_tag.outputs.tag_exists == 'false'
4839
uses: actions/setup-node@v4
@@ -65,7 +56,7 @@ jobs:
6556
if: steps.check_tag.outputs.tag_exists == 'false'
6657
uses: softprops/action-gh-release@v2
6758
with:
68-
tag_name: ${{ steps.get_version.outputs.version }}
59+
tag_name: v${{ steps.get_version.outputs.version }}
6960
files: '*.tgz'
7061
env:
7162
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "op-blocknote-extensions",
33
"private": true,
4-
"version": "0.0.4",
4+
"version": "0.0.5",
55
"type": "module",
66
"module": "dist/op-blocknote-extensions.es.js",
77
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)