chore: bump the version #212
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# --------------------------------------------------------------------------------------------- | |
# Copyright (c) Infiniscene, Inc. All rights reserved. | |
# Licensed under the MIT License. See License.txt in the project root for license information. | |
# --------------------------------------------------------------------------------------------- | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
name: Tag and release package | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- run: | | |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> ~/.npmrc | |
- run: npm ci | |
- run: npm run build | |
- name: Get package version | |
id: package-version | |
uses: martinbeentjes/npm-get-version-action@main | |
- name: Tag commit with release version | |
id: tag_version | |
uses: mathieudutour/github-tag-action@v6.0 | |
with: | |
# Due to a quirk of GitHub actions, we must use an access token of a real user to create | |
# the tag, since any downstream actions (render deploy) won't trigger if it uses the | |
# default runner credentials. | |
github_token: ${{ secrets.SERVICEACCOUNT_GITHUB_TOKEN }} | |
custom_tag: ${{ steps.package-version.outputs.current-version}} | |
- name: Create a GitHub release | |
uses: ncipollo/release-action@v1 | |
with: | |
tag: ${{ steps.tag_version.outputs.new_tag }} | |
name: Release ${{ steps.tag_version.outputs.new_tag }} | |
body: ${{ steps.tag_version.outputs.changelog }} | |
- name: Publish package to NPM | |
uses: JS-DevTools/npm-publish@v1 | |
with: | |
token: ${{ secrets.NPM_TOKEN }} | |
access: public |