Skip to content

chore: コミットハッシュで指定を促すようにREADME修正 (#39) #23

chore: コミットハッシュで指定を促すようにREADME修正 (#39)

chore: コミットハッシュで指定を促すようにREADME修正 (#39) #23

Workflow file for this run

name: Release v1
on:
workflow_dispatch:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set git config
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: Push v1 tag
run: |
git tag -f v1
git push -f origin v1