From c22c49dfe1f560c11228662be8bf39ab7dc0ac3e Mon Sep 17 00:00:00 2001 From: Leangseu Kim <83240113+leangseu-edx@users.noreply.github.com> Date: Thu, 16 May 2024 10:11:17 -0400 Subject: [PATCH 1/2] chore: add manual release action --- .github/workflows/manual-release.yml | 41 ++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/manual-release.yml diff --git a/.github/workflows/manual-release.yml b/.github/workflows/manual-release.yml new file mode 100644 index 0000000..f3a4508 --- /dev/null +++ b/.github/workflows/manual-release.yml @@ -0,0 +1,41 @@ +name: Manual Release + +on: + workflow_dispatch: + inputs: + version: + description: 'The version you want to release to npm/github' + required: true + default: '0.0.0' + type: string + +jobs: + release: + name: Release + runs-on: ubuntu-20.04 + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Setup Nodejs Env + run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: ${{ env.NODE_VER }} + + - name: Install dependencies + run: npm ci + + - name: Create Build + run: npm run build + + - name: Release + env: + GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_GITHUB_TOKEN }} + NPM_TOKEN: ${{ secrets.SEMANTIC_RELEASE_NPM_TOKEN }} + # `npm publish` relies on version specified in package.json file + run: npm publish --tag ${{ inputs.version }} From 1673f1d4b5cdc27a99e202decdc4fe849ec56137 Mon Sep 17 00:00:00 2001 From: Leangseu Kim <83240113+leangseu-edx@users.noreply.github.com> Date: Thu, 16 May 2024 10:31:43 -0400 Subject: [PATCH 2/2] chore: update action --- .github/workflows/manual-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/manual-release.yml b/.github/workflows/manual-release.yml index f3a4508..25901bb 100644 --- a/.github/workflows/manual-release.yml +++ b/.github/workflows/manual-release.yml @@ -38,4 +38,4 @@ jobs: GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.SEMANTIC_RELEASE_NPM_TOKEN }} # `npm publish` relies on version specified in package.json file - run: npm publish --tag ${{ inputs.version }} + run: npm version ${{ inputs.version }} && npm publish