Fixed tag format #7
Workflow file for this run
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: Release | |
on: | |
pull_request_target: | |
types: | |
- closed | |
branches: | |
- main | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
release: | |
name: release | |
permissions: | |
contents: write | |
if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'changeset-release/main') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PNPM | |
uses: pnpm/[email protected] | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: Setup Git user | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "108yen" | |
- name: Install dependencies | |
run: pnpm install | |
- name: Run build | |
run: pnpm build | |
- name: Create release | |
run: ./ | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |