stop using cache #49
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 packages | |
on: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: write | |
jobs: | |
publish_packages: | |
runs-on: ubuntu-latest | |
environment: prod | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
registry-url: "https://registry.npmjs.org" | |
- name: git config | |
run: | | |
git config user.name "${GITHUB_ACTOR}" | |
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" | |
- name: "NPM Identity" | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: | | |
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc | |
- name: Install dependencies | |
run: npm ci | |
- name: Run tests | |
run: npx lerna run test:e2e --since master | |
- name: Build packages | |
run: npx lerna run build:package | |
- name: Publish packages | |
run: npx lerna publish patch --yes | |
rmw-shell-demo: | |
if: ${{ always() }} | |
needs: [publish_packages] | |
runs-on: ubuntu-latest | |
environment: prod | |
defaults: | |
run: | |
working-directory: ./packages/rmw-shell/create-rmw-shell/template | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: git config | |
run: | | |
git config user.name "${GITHUB_ACTOR}" | |
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" | |
- name: install-rmw-shell | |
run: npm install | |
- name: install firebase functins dependencies | |
run: npm i | |
- name: run build | |
run: | | |
npm run build | |
- name: Install firebase tools | |
run: npm i -g firebase-tools | |
- name: Deploy | |
run: | | |
firebase use prod | |
firebase deploy --only hosting --token $FIREBASE_TOKEN | |
env: | |
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} |