-
Notifications
You must be signed in to change notification settings - Fork 7
27 lines (23 loc) · 762 Bytes
/
git.yml
File metadata and controls
27 lines (23 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: Git builds
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# Only trigger manually
on: [workflow_dispatch]
jobs:
debian:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: build Debian package
run: |
sudo apt install build-essential debhelper-compat python3 python3-markdown python3-markupsafe python3-jinja2 sharutils
cp -r distros/debian .
make debian
- name: upload
uses: actions/upload-artifact@v4
with:
path: shutorial_*_all.deb
name: debian_package