tools, env-generator: allow configuration of PARAMS_ENCODING_ENABLED #160
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: Build and Deploy Rucio WebUI Component Library & React App | |
on: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: write | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install 🔧 | |
run: | | |
npm install --legacy-peer-deps | |
- name: Build Storybook 🔧 | |
run: | | |
npm run build-storybook | |
- name: Build React App 🔧 | |
run: | | |
npm run build | |
- name: Deploy Storybook 🚀 | |
run: | | |
chmod +x tools/deploy-to-gh-pages | |
tools/deploy-to-gh-pages |