-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (38 loc) · 1.07 KB
/
tag.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: publish tag
env:
CI: true
on:
push:
branches:
- main
tags:
- "v.*"
jobs:
tag:
name: Setup
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
# バージョン情報を環境変数として設定
- name: set version to env
run: node -p -e '`VERSION=${require("./package.json").version}`' >> $GITHUB_ENV
# バージョン情報持つタグを付与する
# - name: add version tag
# uses: pkgdeps/git-tag-action@v2
# with:
# version: ${{ env.VERSION }}
# github_token: ${{ secrets.GITHUB_TOKEN }}
# github_repo: ${{ github.repository }}
# git_commit_sha: ${{ github.sha }}
# git_tag_prefix: "v"
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ 'v' }}${{ env.VERSION }}
release_name: ${{ 'v' }}${{ env.VERSION }}
draft: false
prerelease: false