2021-08-01 19:39:12 +08:00
|
|
|
name: build-deploy-assets
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
2021-08-02 05:51:00 +08:00
|
|
|
container: twtug/lkmpg
|
2021-08-01 19:39:12 +08:00
|
|
|
|
|
|
|
steps:
|
2022-12-10 06:11:09 +08:00
|
|
|
- uses: actions/checkout@v3.1.0
|
2021-08-01 19:39:12 +08:00
|
|
|
- name: Build
|
2021-08-02 05:51:00 +08:00
|
|
|
run: |
|
|
|
|
make all
|
|
|
|
make html
|
|
|
|
tar zcvf lkmpg-html.tar.gz ./html
|
2021-08-01 19:39:12 +08:00
|
|
|
- name: Release
|
2022-12-10 06:11:09 +08:00
|
|
|
uses: softprops/action-gh-release@v0.1.15
|
2021-08-01 19:39:12 +08:00
|
|
|
with:
|
2021-08-02 05:51:00 +08:00
|
|
|
files: |
|
|
|
|
lkmpg.pdf
|
|
|
|
lkmpg-html.tar.gz
|
2021-08-01 19:39:12 +08:00
|
|
|
tag_name: "latest"
|
|
|
|
prerelease: true
|