From 2ec3e7a68c1e78069e0445469aec533d8aea3769 Mon Sep 17 00:00:00 2001 From: Andrea Lamparelli Date: Fri, 23 Dec 2022 22:46:23 +0100 Subject: [PATCH] disable automatic release creation --- .github/workflows/release.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4423c0a..3091294 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,6 +1,6 @@ -# This workflow create a new tag, a release and then publish it to NPM. +# This workflow create a new tag and then publish it to NPM. -name: "Create Release" +name: "Release Package" on: workflow_dispatch: @@ -32,16 +32,16 @@ jobs: env: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} - create-release: - name: "Create Release" - needs: tag-and-publish - runs-on: "ubuntu-latest" - steps: - - uses: actions/checkout@v3 - - id: package-version - uses: martinbeentjes/npm-get-version-action@main - - uses: marvinpinto/action-automatic-releases@latest - with: - repo_token: "${{ secrets.GITHUB_TOKEN }}" - automatic_release_tag: "v${{ steps.package-version.outputs.current-version}}" - prerelease: false + # create-release: + # name: "Create Release" + # needs: tag-and-publish + # runs-on: "ubuntu-latest" + # steps: + # - uses: actions/checkout@v3 + # - id: package-version + # uses: martinbeentjes/npm-get-version-action@main + # - uses: marvinpinto/action-automatic-releases@latest + # with: + # repo_token: "${{ secrets.GITHUB_TOKEN }}" + # automatic_release_tag: "v${{ steps.package-version.outputs.current-version}}" + # prerelease: false