mirror of
https://github.com/mrrpnya/lipu-sona.git
synced 2025-02-13 16:44:39 +00:00
26 lines
613 B
YAML
26 lines
613 B
YAML
|
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"
|