Skip to content

chore: 1.0.0-alpha.7 (#226) #9

chore: 1.0.0-alpha.7 (#226)

chore: 1.0.0-alpha.7 (#226) #9

Workflow file for this run

name: release
on:
push:
tags:
- "v*"
# Remove default permissions of GITHUB_TOKEN for security
# https://docs.github.com/en/actions/tutorials/authenticate-with-github_token
permissions: {}
jobs:
release:
concurrency:
group: release
permissions:
contents: write
id-token: write
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: current
registry-url: "https://registry.npmjs.org/"
package-manager-cache: false
- name: Install dependencies
run: pnpm install
- name: Build (stub)
run: pnpm dev:prepare
- name: Publish
run: pnpm publish --access public --no-git-checks --tag latest