SEO twitter #185
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 Astro CI | |
on: | |
# Trigger the workflow every time you push to the `main` branch | |
# Using a different branch name? Replace `main` with your branch’s name | |
push: | |
branches: [main] | |
# Allows you to run this workflow manually from the Actions tab on GitHub. | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-20.04 | |
# Allow this job to push changes to your repository | |
permissions: | |
contents: write | |
steps: | |
- name: Check out your repository using git | |
uses: actions/checkout@v2 | |
- name: Use Node.js 16 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
# Not using npm? Change `npm ci` to `yarn install` or `pnpm i` | |
- name: Install dependencies | |
run: npm ci | |
# Not using npm? Change `npm run build` to `yarn build` or `pnpm run build` | |
- name: Build Astro | |
run: npm run build | |
- name: Fix folder refs | |
run: npm run postbuild | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
# `./dist` is the default Astro build directory. | |
# If you changed that, update it here too. | |
publish_dir: ./dist |