Add GitHub Release Tag #382
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: Add GitHub Release Tag | |
on: | |
push: | |
tags: | |
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10 | |
- "plugin-*" # Push events to matching plugin-*, i.e. plugin-(vue|vue-jsx|react|legacy)@1.0.0 | |
- "create-vite*" # # Push events to matching create-vite*, i.e. [email protected] | |
# $GITHUB_REF_NAME - https://docs.github.com/en/actions/learn-github-actions/environment-variables#default-environment-variables | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get pkgName for tag | |
id: tag | |
run: | | |
# matching v2.0.0 / v2.0.0-beta.8 etc | |
if [[ $GITHUB_REF_NAME =~ ^v.+ ]]; then | |
pkgName="vite" | |
else | |
# `%@*` truncates @ and version number from the right side. | |
# https://stackoverflow.com/questions/9532654/expression-after-last-specific-character | |
pkgName=${GITHUB_REF_NAME%@*} | |
fi | |
echo "::set-output name=pkgName::$pkgName" | |
- name: Create Release for Tag | |
id: release_tag | |
uses: yyx990803/release-tag@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
body: | | |
Please refer to [CHANGELOG.md](https://github.com/vitejs/vite/blob/${{ github.ref_name }}/packages/${{ steps.tag.outputs.pkgName }}/CHANGELOG.md) for details. |