App Routerへの移行 (#22) #38
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: 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 |