Skip to content

Merge pull request #89 from bluesky-social/samuel/text-press-highligh… #4

Merge pull request #89 from bluesky-social/samuel/text-press-highligh…

Merge pull request #89 from bluesky-social/samuel/text-press-highligh… #4

Workflow file for this run

name: Publish
on:
push:
tags:
- 'v*'
permissions:
id-token: write
contents: write
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '24'
registry-url: 'https://registry.npmjs.org'
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: npm publish --access public --provenance
- name: Create GitHub Release
run: gh release view ${{ github.ref_name }} || gh release create ${{ github.ref_name }} --generate-notes
env:
GH_TOKEN: ${{ github.token }}