update readme and theme example #11
Workflow file for this run
This file contains hidden or 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: Deploy Packages | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
deploy-packages: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- uses: pnpm/action-setup@v2 | |
name: Install pnpm | |
with: | |
version: 10 | |
run_install: false | |
- uses: gittools/actions/gitversion/setup@v0 | |
with: | |
versionSpec: "5.x" | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Test | |
run: | | |
pnpm -r test | |
- name: Check | |
run: | | |
pnpm -r check:prettier | |
pnpm -r check:eslint | |
- name: Build | |
run: | | |
pnpm -r build | |
- name: Copy README | |
run: cp ./README.md packages/prai | |
- name: Gitversion | |
id: gitversion | |
uses: gittools/actions/gitversion/execute@v0 | |
- name: Set Version | |
run: pnpm -r exec json -f "package.json" -I -e 'this.version = "${{ steps.gitversion.outputs.fullSemVer }}"' | |
- name: Set publishing config | |
run: pnpm config set '//registry.npmjs.org/:_authToken' "${{ secrets.NPM_TOKEN }}" | |
- name: Deploy prai Package | |
working-directory: ./packages/prai | |
run: pnpm publish --access public --no-git-checks --tag ${{ steps.gitversion.outputs.preReleaseLabel == '' && 'latest' || steps.gitversion.outputs.preReleaseLabel }} | |
- name: Deploy prai-redis Package | |
working-directory: ./packages/redis | |
run: pnpm publish --access public --no-git-checks --tag ${{ steps.gitversion.outputs.preReleaseLabel == '' && 'latest' || steps.gitversion.outputs.preReleaseLabel }} |