diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-02-12 15:55:21 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-02-12 16:17:30 +0800 |
commit | a9f9e5daf8ffa74abe0042c586561e136478e423 (patch) | |
tree | 1e12ccc4063ef3ef09d89d98245fd94ca44e23ee /works/teapot/.github/workflows | |
parent | 1e1ca99bde2d398ac5527cc74e6a3f8a2a70345f (diff) | |
parent | cb0e3a0fb536284bdf366b0bdca2f8f0bfdcf6d1 (diff) | |
download | crupest-a9f9e5daf8ffa74abe0042c586561e136478e423.tar.gz crupest-a9f9e5daf8ffa74abe0042c586561e136478e423.tar.bz2 crupest-a9f9e5daf8ffa74abe0042c586561e136478e423.zip |
import(teapot): IMPORT crupest/teapot COMPLETE.
Diffstat (limited to 'works/teapot/.github/workflows')
-rw-r--r-- | works/teapot/.github/workflows/ci.yaml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/works/teapot/.github/workflows/ci.yaml b/works/teapot/.github/workflows/ci.yaml new file mode 100644 index 0000000..9420964 --- /dev/null +++ b/works/teapot/.github/workflows/ci.yaml @@ -0,0 +1,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 |