This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
update roadmap (#262) #768
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: Deploy to GitHub pages | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
- name: NPM Install | |
run: npm install | |
- uses: jeffreytse/jekyll-deploy-action@af39f51204a5b46d738cd5782ab31e4109eef533 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
cname: 'pactus.org' | |
# https://pngquant.org/install.html | |
# for compression of PNG images. | |
pre_build_commands: pacman -S --noconfirm pngquant |