aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/ppa.yml
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-02-04 20:26:57 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-02-04 20:26:57 +0100
commitb10206f038c03348b3c89be52e24ed5917d965f0 (patch)
tree4d6ef92afc6f4c764ac4f10d478526285b93d336 /.github/workflows/ppa.yml
parentdebian: 2.0.3-4 (diff)
downloadconfig-links-b10206f038c03348b3c89be52e24ed5917d965f0.tar.gz
config-links-b10206f038c03348b3c89be52e24ed5917d965f0.zip
workflows: prettify?
Diffstat (limited to '.github/workflows/ppa.yml')
-rw-r--r--.github/workflows/ppa.yml12
1 files changed, 7 insertions, 5 deletions
diff --git a/.github/workflows/ppa.yml b/.github/workflows/ppa.yml
index 0383422..921d626 100644
--- a/.github/workflows/ppa.yml
+++ b/.github/workflows/ppa.yml
@@ -20,13 +20,15 @@ jobs:
gpg_private_key: '${{ secrets.GPG_PRIVATE_KEY }}'
passphrase: '${{ secrets.GPG_PASSPHRASE }}'
- name: Install dependencies
- run: cd debian && sudo make deps
+ run: sudo make -C debian deps
- name: Create cowbuilder image
- run: cd debian && sudo make dist/create
+ run: sudo make -C debian dist/create
- name: Build binary package
- run: cd debian && make dist
+ run: make -C debian dist
+ - name: Clean the build area
+ run: make -C debian clean
- name: Build source package
- run: cd debian && make clean && make src
+ run: make -C debian src
- name: Upload to PPA
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/debian/')
- run: cd debian && make upload
+ run: make -C debian upload