Skip to content

chore: release @alauda/doom (#252) #264

chore: release @alauda/doom (#252)

chore: release @alauda/doom (#252) #264

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
id-token: write
pull-requests: write
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
fetch-depth: 0
- name: Setup Node.js LTS
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version: lts/*
- name: Install Dependencies
run: yarn --immutable
- name: Create Release Pull Request or Publish to npm
uses: changesets/action@v1
with:
commit: 'chore: release @alauda/doom'
title: 'chore: release @alauda/doom'
publish: yarn release
version: yarn run version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}