Skip to content

Commit

Permalink
workflow: update workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Venz <[email protected]>
  • Loading branch information
ikstream committed May 6, 2024
1 parent 7209735 commit 437756c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ jobs:
- uses: actions/checkout@v3

- name: Install dependencies
run: sudo pacman -Sy --noconfirm archlinux-keyring blackarch-keyring && sudo pacman -S --noconfirm --needed make docker devtools fakeroot fakechroot
run: |
sudo pacman-key --init && \
sudo pacman-key --populate archlinux blackarch && \
sudo pacman -Sy --noconfirm --needed archlinux-keyring blackarch-keyring && \
sudo pacman -Sy --noconfirm --needed make docker devtools fakeroot fakechroot
- name: Build base
run: |
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/scheduled-docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ jobs:
- uses: actions/checkout@v3

- name: Install dependencies
run: sudo pacman -Sy --noconfirm archlinux-keyring blackarch-keyring && sudo pacman -Sy --noconfirm --needed make docker devtools fakeroot fakechroot
run: |
sudo pacman-key --init && \
sudo pacman-key --populate archlinux blackarch && \
sudo pacman -Sy --noconfirm --needed archlinux-keyring blackarch-keyring && \
sudo pacman -Sy --noconfirm --needed make docker devtools fakeroot fakechroot
- name: Build base
run: |
Expand Down

0 comments on commit 437756c

Please sign in to comment.