11.0.1 #3
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-release | |
on: | |
push: | |
branches: [main] | |
defaults: | |
run: | |
shell: bash -l {0} | |
jobs: | |
ReleaseWeb: | |
name: Release dev version to NPM | |
runs-on: ubuntu-latest | |
environment: Publishing | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
with: | |
ref: main | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install | |
run: npm ci --prefer-offline | |
- name: Build react-error-overlay | |
run: | | |
cd packages/react-error-overlay/ | |
npm run build:prod | |
- name: Build | |
run: npm run build | |
- name: Publish NPM package | |
run: | | |
cd packages/react-scripts | |
npm version prerelease --preid=$BUILD_VERSION-dev --no-git-tag-version | |
npm publish --tag alpha | |
env: | |
BUILD_VERSION: ${{ github.run_number }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |