Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 7 additions & 28 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,33 +7,12 @@ on:
description: "version | patch | minor | major"
required: true
default: "patch"

jobs:
publish:
environment: release
runs-on: ubuntu-latest
name: 'Bump version and publish'
env:
VERSION: ${{ github.event.inputs.version }}
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN }}
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install packages
run: npm install
env:
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
- name: version and publish
run: |
git stash
git config user.name $GITHUB_ACTOR
git config user.email gh-actions-${GITHUB_ACTOR}@github.com
git remote add gh-origin https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
npm version $VERSION -m "Version %s"
npm publish
git push gh-origin $GITHUB_REF --tags
uses: activeprospect/github-action-workflows/.github/workflows/release.yml@master
with:
version: ${{ github.event.inputs.version }}
secrets:
NPM_PUBLISH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}