diff options
Diffstat (limited to 'works/teapot/.github/workflows/ci.yaml')
-rw-r--r-- | works/teapot/.github/workflows/ci.yaml | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/works/teapot/.github/workflows/ci.yaml b/works/teapot/.github/workflows/ci.yaml index 426fdb9..9420964 100644 --- a/works/teapot/.github/workflows/ci.yaml +++ b/works/teapot/.github/workflows/ci.yaml @@ -10,18 +10,15 @@ 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 + run: bash ./script/install-deps.bash - name: Build Deb Package - run: ./script/build-deb.bash + run: bash ./script/build-deb.bash - name: Upload Artifact uses: actions/upload-artifact@v3 |