Release weapp-tailwindcss #5
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 weapp-tailwindcss | |
permissions: | |
contents: write | |
on: | |
workflow_dispatch: | |
# push: | |
# tags: | |
# - 'v*' | |
# pnpm publish --access public --no-git-checks | |
jobs: | |
release: | |
permissions: | |
id-token: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
# with: | |
# version: 9 | |
- name: Set node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: pnpm | |
registry-url: 'https://registry.npmjs.org' | |
# - run: npx changelogithub | |
# continue-on-error: true | |
# env: | |
# GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- name: Install Dependencies | |
run: pnpm i | |
- name: PNPM build | |
run: pnpm run build | |
- name: Publish to NPM | |
working-directory: ./packages/weapp-tailwindcss | |
run: pnpm release | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
NPM_CONFIG_PROVENANCE: true |