Skip to content

Commit

Permalink
build.yml: fix setup interactive
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisSchinnerl committed Feb 9, 2024
1 parent 571b6d0 commit c097846
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Install dependencies
run: |
apt update && apt install -y unzip dpkg-dev git reprepro
apt-get update && DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get -y install unzip dpkg-dev git
- name: Import GPG Key
run: |
Expand Down Expand Up @@ -149,17 +149,22 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- name: install dependencies
run: |
sudo apt-get update && sudo apt-get -y install reprepro
- name: Checkout repo
uses: actions/checkout@v3

- name: Download deb packages
uses: actions/download-artifact@v4
with:
merge-multiple: true

- name: Checkout repo
uses: actions/checkout@v3

- name: Add packages to repository
shell: bash
run: |
find ./
for package in *.deb; do
# split up the filename to get the distro and release
IFS='+' read -r -a parts <<< ${package}
Expand Down

0 comments on commit c097846

Please sign in to comment.