adding a deploy workflow

This commit is contained in:
/dev/urandom 2022-10-22 15:06:24 +03:00
parent 112220b3fb
commit 8ab6ddb4f7

25
.github/workflows/main.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: install dependencies
run: sudo apt-get install -y discount make gcc
- name: checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: cd repo
run: cd ${{ github.workspace }}
- name: build
run: make
- name: deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: "${{ github.workspace }}/public"