Skip to content

Version 0.0.0-experimental-2272fa73 #66

Version 0.0.0-experimental-2272fa73

Version 0.0.0-experimental-2272fa73 #66

name: πŸš€ Release (experimental)
on:
push:
tags:
- "v0.0.0-experimental*"
concurrency: ${{ github.workflow }}-${{ github.ref }}
env:
CI: true
jobs:
release:
name: πŸ§‘β€πŸ”¬ Experimental Release
if: |
github.repository == 'remix-run/react-router' &&
contains(github.ref, 'experimental')
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: βŽ” Setup node
uses: actions/setup-node@v4
with:
cache: yarn
node-version-file: ".nvmrc"
- name: πŸ“₯ Install deps
run: yarn --frozen-lockfile
- name: πŸ— Build
run: yarn build
- name: πŸ” Setup npm auth
run: |
echo "registry=https://registry.npmjs.org" >> ~/.npmrc
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> ~/.npmrc
- name: πŸš€ Publish
run: npm run publish