Release #6
Workflow file for this run
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
name: Release | |
on: | |
push: | |
tags: | |
- '*.*.*' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: '0' | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
cache: npm | |
registry-url: https://registry.npmjs.org/ | |
- run: | | |
ls -al | |
VERSION=${GITHUB_REF/refs\/tags\//} | |
TAG='latest' | |
if [[ $VERSION =~ 'alpha' || $VERSION =~ 'beta' || $VERSION =~ 'rc' ]]; then | |
TAG='next' | |
fi | |
npm publish --tag $TAG | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.npm_token}} | |
# @see https://github.com/actions/create-release/issues/38#issuecomment-715327220 | |
# @see https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-commands-for-github-actions#environment-files | |
- name: Prepare the changelog from the tag message | |
id: prepare_changelog | |
run: | | |
# Parse version | |
VERSION=${GITHUB_REF/refs\/tags\//} | |
echo "Setting release version to $VERSION" | |
echo "release_version=$VERSION" >> $GITHUB_ENV | |
echo "$GITHUB_REF" | |
echo "$GITHUB_REF_NAME" | |
PRERELEASE=false | |
# Check release type | |
if [[ $VERSION =~ 'alpha' || $VERSION =~ 'beta' || $VERSION =~ 'rc' ]]; then | |
echo "This is a prerelease." | |
PRERELEASE=true | |
fi | |
echo "is_prerelease=$PRERELEASE" >> $GITHUB_ENV | |
# @see https://github.com/actions/create-release | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: v${{ env.release_version }} | |
draft: false | |
prerelease: ${{ env.is_prerelease }} |