Skip to content

fix: Text Selection #83

fix: Text Selection

fix: Text Selection #83

Workflow file for this run

name: Publish
on:
push:
branches:
- v8
env:
HUSKY: 0
permissions:
id-token: write
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache Yarn cache
uses: actions/cache@v4
env:
cache-name: yarn-cache
with:
path: ~/.yarn/berry/cache
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-${{ env.cache-name }}
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: yarn install --no-immutable
- name: Generate archive
run: yarn pack
- name: Publish with next tag
run: npm publish package.tgz --tag next --provenance
working-directory: packages/react-pdf
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_MKV }}