diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4e65de9..5fda605 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 }} +