mirror of
https://github.com/sysprog21/lkmpg.git
synced 2024-11-22 22:15:46 +08:00
37 lines
722 B
YAML
37 lines
722 B
YAML
name: build-deploy-assets
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container: twtug/lkmpg
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Build
|
|
run: |
|
|
make all
|
|
make html
|
|
tar zcvf lkmpg-html.tar.gz ./html
|
|
- name: Delete old release
|
|
uses: cb80/delrel@latest
|
|
with:
|
|
tag: latest
|
|
- name: Tag
|
|
run: |
|
|
git tag latest
|
|
git push -f --tags
|
|
- name: Release
|
|
uses: softprops/action-gh-release@v0.1.15
|
|
with:
|
|
files: |
|
|
lkmpg.pdf
|
|
lkmpg-html.tar.gz
|
|
tag_name: "latest"
|
|
prerelease: true
|