fix: free tiers should be removed from volume based if they exists #213
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: GitHub Pages | |
on: | |
push: | |
paths: | |
- 'apps/**/*' | |
- 'components/**/*' | |
- '.github/workflows/gh-pages.yaml' | |
branches: | |
- main | |
jobs: | |
deploy: | |
name: 🚀 Deploy on Github.io | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
steps: | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v3 | |
- name: ⎔ Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Set .homepage in package.json | |
uses: jossef/action-set-json-field@v2 | |
with: | |
file: apps/demo/package.json | |
field: homepage | |
value: libraries | |
- name: 🥖 Build the React App | |
run: | | |
yarn | |
yarn build --filter demo | |
- name: 🍿 Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
if: ${{ github.ref == 'refs/heads/main' }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./apps/demo/build | |
keep_files: true |