test useTransition on cloudflare #73
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: | ||
release: | ||
types: [published] | ||
env: | ||
NODE_VERSION: 18 | ||
PNPM_VERSION: 8.11.0 | ||
jobs: | ||
publish: | ||
name: Publish | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [${{ env.NODE_VERSION }}] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.release.target_commitish }} | ||
- uses: pnpm/[email protected] | ||
with: | ||
version: ${{ env.PNPM_VERSION }} | ||
- name: Install Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'pnpm' | ||
- run: pnpm install -no-frozen-lockfile | ||
- name: Test | ||
run: pnpm test | ||
- name: Set up git | ||
run: | | ||
git config --local user.email '41898282+github-actions[bot]@users.noreply.github.com' | ||
git config --local user.name 'github-actions[bot]' | ||
- name: Bump version to ${{ github.event.release.tag_name }} | ||
run: | | ||
pnpm -F @ensdomains/thorin run ver ${{ github.event.release.tag_name }} | ||
git add . | ||
git commit -m "${{ github.event.release.tag_name }}" | ||
- name: Copy README | ||
run: | | ||
cp README.md components/README.md | ||
- name: Publish | ||
env: | ||
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
run: | | ||
pnpm config set //registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN} | ||
pnpm -F @ensdomains/thorin publish --no-git-checks | ||
- name: Push changes | ||
run: git push | ||
env: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} |