From 24ded41f57beb47d60e08718bcd8344fbf9f26be Mon Sep 17 00:00:00 2001 From: Anton Date: Sat, 30 Sep 2023 22:20:12 +0300 Subject: [PATCH] Artifact upload test --- .github/workflows/build.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6d577d6..21fcc14 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,3 +27,15 @@ jobs: - name: Build the DEB packages run: dpkg-buildpackage -b -us -uc + working-directory: repo/ + + - name: Cache the repo + uses: actions/cache/save@v3 + with: + path: repo/ + key: ${{ runner.arch }}-build + + - name: Upload the DEB packages + uses: actions/upload-artifact@v3 + with: + path: '*.deb'