Skip to content

Merge pull request #24 from react18-tools/minify #23

Merge pull request #24 from react18-tools/minify

Merge pull request #24 from react18-tools/minify #23

Workflow file for this run

name: Publish to NPM
# publish only when package json has changed - assuming version upgrade
on:
workflow_dispatch:
push:
branches: [main]
paths: "lib/r18gs/package.json"
jobs:
publish:
# Don't run just after creating repo from template
# Also avoid running after merging set-up PR
if: github.event.repository.owner.login == 'react18-tools'
runs-on: ubuntu-latest
permissions:
packages: write
contents: write
id-token: write
defaults:
run:
working-directory: ./lib/r18gs
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org
- run: npm i -g pnpm && pnpm i
name: Install dependencies
# fail and not publish if any of the unit tests are failing
- name: Test
run: pnpm test
- name: publish to NPM
run: pnpm build && pnpm publish-package
continue-on-error: true
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
TOKEN: ${{ secrets.GITHUB_TOKEN }}
OWNER: ${{ github.event.repository.owner.login }}
REPO: ${{ github.event.repository.name }}
- name: Create GitHub release
run: |
v=$(node -p -e "require('./package.json').version")
gh release create $v --generate-notes --latest -n "$(sed '1,/^## /d;/^## /,$d' CHANGELOG.md)" --title "Release $v"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Publish canonical packages
continue-on-error: true
run: |
sed -i -e "s/.*name.*/\t\"name\": \"@mayank1513\/r18gs\",/" package.json
npm publish --provenance --access public
sed -i -e "s/.*name.*/\t\"name\": \"react18-global-store\",/" package.json
npm publish --provenance --access public
sed -i -e "s/.*name.*/\t\"name\": \"react18-store\",/" package.json
npm publish --provenance --access public
sed -i -e "s/.*name.*/\t\"name\": \"react19-global-store\",/" package.json
npm publish --provenance --access public
sed -i -e "s/.*name.*/\t\"name\": \"react19-store\",/" package.json
npm publish --provenance --access public
sed -i -e "s/.*name.*/\t\"name\": \"r19gs\",/" package.json
npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
- name: Mark scoped package as deprecated
run: npm deprecate @mayank1513/r18gs "Please use https://www.npmjs.com/package/r18gs instead. We initially created scoped packages to have similarities with the GitHub Public Repository (which requires packages to be scoped). We are no longer using GPR and thus deprecating all scoped packages for which corresponding un-scoped packages exist."
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}