Skip to content

Commit

Permalink
ci: add release script
Browse files Browse the repository at this point in the history
  • Loading branch information
hemengke1997 committed May 24, 2024
1 parent 4293354 commit a871da7
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Create Release

on:
push:
tags:
- v*

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.GHB_TOKEN }}
with:
tag_name: ${{ github.ref }}
body: |
Please refer to [CHANGELOG.md](https://github.com/hemengke1997/vscode-image-manager/blob/master/CHANGELOG.md) for details.

0 comments on commit a871da7

Please sign in to comment.