Skip to content

Remove astro compress #66

Remove astro compress

Remove astro compress #66

Workflow file for this run

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:
# schedule:
# - cron: "0 4 * * 1" # run at 4am every monday, the last digit is the day of the week see https://crontab.guru/
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: make build
- 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