aboutsummaryrefslogtreecommitdiff
path: root/store/works/teapot/.github/workflows/ci.yaml
blob: 9420964c81f0e08b9be5066fed7fdaf79cac13b0 (plain)
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
27
name: CI

on:
  push:
    branches: [main]
  pull_request:
    branches: [main]

jobs:
  build:
    name: Build
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v3

      - name: Install Build Dependencies
        run: bash ./script/install-deps.bash  

      - name: Build Deb Package
        run: bash ./script/build-deb.bash

      - name: Upload Artifact
        uses: actions/upload-artifact@v3
        with:
          name: deb-package
          path: build/package.deb