ci: π‘ fix dual publishing #125
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: main | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
# validate: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: π Cancel Previous Runs | |
# uses: styfle/[email protected] | |
# - name: β¬οΈ Checkout repo | |
# uses: actions/checkout@v2 | |
# - name: β Setup pnpm@7 | |
# uses: pnpm/action-setup@v2 | |
# with: | |
# version: 7 | |
# - name: β Setup Node@18 | |
# uses: actions/setup-node@v3 | |
# with: | |
# cache: 'pnpm' | |
# node-version: 18 | |
# - name: π₯ Download deps | |
# run: pnpm install | |
# - name: π Build | |
# run: pnpm build | |
# - name: π Verify types | |
# run: pnpm type-check | |
# - name: π Verify format (`pnpm format` committed?) | |
# run: pnpm format --check --no-write | |
# - name: π΅οΈ Lint | |
# run: pnpm lint | |
# - name: π‘οΈ Test | |
# run: pnpm test | |
release: | |
# needs: validate | |
runs-on: ubuntu-latest | |
# if: ${{ github.repository == 'LottieFiles/lottie-styler' && github.event_name == 'push' }} | |
steps: | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v2 | |
- name: β Setup pnpm@7 | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 7 | |
- name: β Setup Node@18 for Github Packages | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'pnpm' | |
node-version: 18 | |
- name: π₯ Download deps | |
run: pnpm install | |
- name: π Build | |
run: pnpm build | |
- name: Creating .npmrc for Auth | |
run: | | |
# For Github Packages | |
echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> "$HOME/.npmrc" | |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPMJS_TOKEN }}" >> "$HOME/.npmrc" | |
echo "always-auth=true" >> "$HOME/.npmrc" | |
- name: π Release to Github Packages | |
uses: changesets/action@v1 | |
with: | |
commit: 'chore: π€ update versions' | |
title: 'chore: π€ update versions' | |
publish: pnpm release:publish --registry https://npm.pkg.github.com/ | |
version: pnpm release:version | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: π Release to NPM | |
uses: changesets/action@v1 | |
with: | |
commit: 'chore: π€ update versions' | |
title: 'chore: π€ update versions' | |
publish: pnpm release:publish --registry https://registry.npmjs.org/ | |
version: pnpm release:version | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }} |