Skip to content

Instantly share code, notes, and snippets.

@shinokada
Created October 12, 2022 21:32
Show Gist options
  • Save shinokada/20a8ac694b54395171b970d0550e6986 to your computer and use it in GitHub Desktop.
Save shinokada/20a8ac694b54395171b970d0550e6986 to your computer and use it in GitHub Desktop.
# https://github.com/vuejs/vue/blob/main/.github/workflows/release-tag.yml
on:
push:
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
name: Create Release
jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- 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/vuejs/vue/blob/main/CHANGELOG.md) for details.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment