Skip to content

Commit

Permalink
chore: ci publish
Browse files Browse the repository at this point in the history
  • Loading branch information
wtto00 committed Sep 22, 2023
1 parent 783d307 commit f1e9b90
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- main
tags:
- 'v*'

jobs:
Lint:
Expand Down Expand Up @@ -65,3 +67,68 @@ jobs:

- name: Run tests 👩🏽‍💻
run: npm run test

PublishGithub:
runs-on: ubuntu-latest
needs: Test
if: startsWith(github.ref, 'refs/tags/v')
name: Publish Github Package
permissions:
contents: read
packages: write
steps:
- name: Checkout Code
uses: actions/checkout@v3

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false

- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'pnpm'
registry-url: https://npm.pkg.github.com/

- name: Install Dependencies
run: pnpm install --no-frozen-lockfile

- run: npm pkg set publishConfig.registry=https://npm.pkg.github.com
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

PublishNpm:
runs-on: ubuntu-latest
needs: Test
if: startsWith(github.ref, 'refs/tags/v')
name: Publish Npm Package
steps:
- name: Checkout Code
uses: actions/checkout@v3

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false

- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'pnpm'
registry-url: https://registry.npmjs.org

- name: Install Dependencies
run: pnpm install --no-frozen-lockfile

- run: git config --global user.name "GitHub CD bot"
- run: git config --global user.email "[email protected]"
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_CONFIG_PROVENANCE: true

0 comments on commit f1e9b90

Please sign in to comment.