diff --git a/.eslintrc b/.eslintrc.json similarity index 100% rename from .eslintrc rename to .eslintrc.json diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b37834b..f6a7f75 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -28,19 +28,20 @@ jobs: id: package-version run: node -e \"require('./utils').actionVersion()\" >> $GITHUB_OUTPUT - - name: Publish - run: | - npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN} - npm publish --ignore-scripts - env: - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - + # - name: Publish + # run: | + # npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN} + # npm publish --ignore-scripts + # env: + # NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + - name: Create Release id: create_release uses: softprops/action-gh-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: + draft: true tag_name: ${{ steps.package-version.outputs.version }} name: Release ${{ steps.package-version.outputs.version }} body: Published at ${{ github.sha }}