π¦ Publish #15
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: π¦ Publish | |
on: | |
workflow_dispatch: | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
PAT: ${{ secrets.PAT }} | |
jobs: | |
Publish: | |
name: π Publish | |
if: github.repository_owner == 'guotingchao' | |
# && github.event.pull_request.merged == true && github.head_ref == 'changeset-release/main' && github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- name: β¬οΈ Checkout | |
id: checkout | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ env.GITHUB_TOKEN }} | |
- name: echo if condition | |
run: | | |
echo ${{ github.repository_owner }} | |
echo ${{ github.event_name }} | |
echo ${{ github.head_ref }} | |
echo ${{ github.ref }} | |
echo ${{ github.ref_name }} | |
- name: π’ Setup node | |
id: setup-node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: latest | |
- name: π₯‘ Setup pnpm | |
id: setup-pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: latest | |
run_install: false | |
- name: π Get pnpm store directory | |
id: get-pnpm-cache-dir | |
run: echo "pnpm_cache_dir=$(pnpm store path)" >> "$GITHUB_OUTPUT" | |
- name: π Cache pnpm modules | |
uses: actions/cache@v4 | |
id: pnpm-cache | |
with: | |
path: ${{ steps.get-pnpm-cache-dir.outputs.pnpm_cache_dir }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: 𧩠Install Dependencies | |
id: install-dependencies | |
run: pnpm install | |
- name: ποΈ Build | |
id: build-the-library | |
run: | | |
pnpm build | |
- name: π£ Create Release Pull Request and Publish new version to Npm | |
id: publish | |
uses: changesets/action@v1.4.7 | |
with: | |
publish: pnpm run publish:release | |
env: | |
GITHUB_TOKEN: ${{ env.PAT }} | |
NPM_TOKEN: ${{ env.NPM_TOKEN }} | |
# - name: πΊ Publish new version to Github Packages | |
# uses: JS-DevTools/npm-publish@v3 | |
# with: | |
# token: ${{ env.PAT }} | |
# registry: "@cardbhttps://npm.pkg.github.com/guotingchao" | |
# - if: ${{ steps.publish.outputs.type }} | |
# run: echo "Version changed!" |