Only style feature comp side-by-side layout at medium screen #163
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
# Created from starter workflow: https://github.com/actions/starter-workflows/blob/main/pages/static.yml | |
name: Publish to GitHub Pages | |
on: push | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: true | |
jobs: | |
publish: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
cache: 'npm' | |
- name: Set Font Awesome token and dry run installation | |
run: | | |
npm config set '@fortawesome:registry=https://npm.fontawesome.com/' | |
npm config set '//npm.fontawesome.com/:_authToken' "${{ secrets.FONTAWESOME_TOKEN }}" | |
npm install @fortawesome/fontawesome-pro --dry-run | |
- name: Install dependencies | |
run: npm ci | |
- name: Create build | |
run: npm run build | |
- name: Setup Pages | |
uses: actions/configure-pages@v2 | |
- name: Upload build | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
path: 'fractal-dist' | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v1 |