From e09b474e2e9fb9ae87536bdce5c8df3c5f8006ee Mon Sep 17 00:00:00 2001 From: crupest Date: Tue, 17 Oct 2023 22:02:25 +0800 Subject: import(teapot): Startup! --- works/teapot/.github/workflows/ci.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 works/teapot/.github/workflows/ci.yaml (limited to 'works/teapot/.github/workflows') diff --git a/works/teapot/.github/workflows/ci.yaml b/works/teapot/.github/workflows/ci.yaml new file mode 100644 index 0000000..426fdb9 --- /dev/null +++ b/works/teapot/.github/workflows/ci.yaml @@ -0,0 +1,30 @@ +name: CI + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + build: + name: Build + runs-on: ubuntu-latest + defaults: + run: + shell: bash + + steps: + - uses: actions/checkout@v3 + + - name: Install Build Dependencies + run: ./script/install-deps.bash + + - name: Build Deb Package + run: ./script/build-deb.bash + + - name: Upload Artifact + uses: actions/upload-artifact@v3 + with: + name: deb-package + path: build/package.deb -- cgit v1.2.3