diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 31d1fd1b..4f173bfe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,3 +30,5 @@ jobs: - name: Release if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} run: ./release.sh + env: + NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/package.json b/package.json index 2aab86bb..1205cc57 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "floating-vue-monorepo", "packageManager": "pnpm@8.6.2", - "version": "5.2.2-reedsy.1.0.2", + "version": "5.2.2-reedsy.1.0.3", "private": true, "scripts": { "build": "pnpm -r --filter=\"./packages/*\" run build", diff --git a/packages/floating-vue/package.json b/packages/floating-vue/package.json index 723c7640..3cb20d87 100644 --- a/packages/floating-vue/package.json +++ b/packages/floating-vue/package.json @@ -1,6 +1,6 @@ { "name": "@reedsy/floating-vue", - "version": "5.2.2-reedsy.1.0.2", + "version": "5.2.2-reedsy.1.0.3", "description": "Easy Vue tooltips, dropdowns, menus & popovers using floating-ui", "author": "Guillaume Chau ", "scripts": { diff --git a/release.sh b/release.sh index c2c98ce4..412e4aa4 100755 --- a/release.sh +++ b/release.sh @@ -18,10 +18,6 @@ fi echo '!packages/floating-vue/dist' >> .gitignore -git checkout -b release-$VERSION -git add .gitignore -git add --all packages/floating-vue/dist/ -git commit --message "Release version $VERSION" git tag $VERSION git push origin refs/tags/$VERSION