This repository has been archived by the owner on May 10, 2024. It is now read-only.
remove unused dependencies #34
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 to GitHub pages for testing | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/[email protected] | |
with: | |
persist-credentials: false | |
- name: Install and Build 🔧 | |
env: | |
typesense_host: ${{ secrets.VITE_APP_TYPESENSE_HOST }} | |
typesense_port: ${{ secrets.VITE_APP_TYPESENSE_PORT }} | |
typesense_protocol: ${{ secrets.VITE_APP_TYPESENSE_PROTOCOL }} | |
typesense_search_key: ${{ secrets.VITE_APP_TYPESENSE_SEARCH_KEY }} | |
typesense_bischoff_index: ${{ secrets.VITE_APP_TYPESENSE_BISCHOFF_INDEX_NAME }} | |
typesense_rumpf_index: ${{ secrets.VITE_APP_TYPESENSE_RUMPF_INDEX_NAME }} | |
typesense_supplique_index: ${{ secrets.VITE_APP_TYPESENSE_SUPPLIQUE_INDEX_NAME }} | |
run: | # Install npm packages and build the Storybook files | |
npm install | |
echo -e "VITE_APP_TYPESENSE_HOST=${typesense_host}\nVITE_APP_TYPESENSE_PORT=${typesense_port}\nVITE_APP_TYPESENSE_PROTOCOL=${typesense_protocol}\nVITE_APP_TYPESENSE_SEARCH_KEY=${typesense_search_key}\nVITE_APP_TYPESENSE_BISCHOFF_INDEX_NAME=${typesense_bischoff_index}\nVITE_APP_TYPESENSE_RUMPF_INDEX_NAME=${typesense_rumpf_index}\nVITE_APP_TYPESENSE_SUPPLIQUE_INDEX_NAME=${typesense_supplique_index}" >> .env | |
echo "Using env:" | |
cat .env | |
npm run build-storybook | |
touch ./storybook-static/.nojekyll | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages # The branch the action should deploy to. | |
folder: storybook-static # The folder that the build-storybook script generates files. | |
clean: true # Automatically remove deleted files from the deploy branch |