Skip to content

v7.1.0

v7.1.0 #35

Workflow file for this run

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