Skip to content

Commit

Permalink
Merge pull request #4 from faucetsdn/fix-ubuntu-uploads
Browse files Browse the repository at this point in the history
Fix ubuntu package uploads.
  • Loading branch information
gizmoguy authored Dec 7, 2021
2 parents 1458c9c + 174895d commit ba9e9dc
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 10 deletions.
22 changes: 17 additions & 5 deletions .github/workflows/release-debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,39 +76,51 @@ jobs:
include:
- distro: "debian"
release: "buster"
image: "buster"
arch: "armv7"
- distro: "debian"
release: "buster"
image: "buster"
arch: "aarch64"
- distro: "debian"
release: "bullseye"
image: "bullseye"
arch: "armv7"
- distro: "debian"
release: "bullseye"
image: "bullseye"
arch: "aarch64"
- distro: "ubuntu"
release: "ubuntu18.04"
release: "bionic"
image: "ubuntu18.04"
arch: "armv7"
- distro: "ubuntu"
release: "ubuntu18.04"
release: "bionic"
image: "ubuntu18.04"
arch: "aarch64"
- distro: "ubuntu"
release: "ubuntu20.04"
release: "focal"
image: "ubuntu20.04"
arch: "armv7"
- distro: "ubuntu"
release: "ubuntu20.04"
release: "focal"
image: "ubuntu20.04"
arch: "aarch64"
- distro: "raspbian"
release: "buster"
image: "buster"
arch: "armv7"
- distro: "raspbian"
release: "buster"
image: "buster"
arch: "aarch64"
- distro: "raspbian"
release: "bullseye"
image: "bullseye"
arch: "armv7"
- distro: "raspbian"
release: "bullseye"
image: "bullseye"
arch: "aarch64"
steps:
- name: Checkout repo
Expand All @@ -118,7 +130,7 @@ jobs:
id: build
with:
arch: ${{ matrix.arch }}
distro: ${{ matrix.release }}
distro: ${{ matrix.image }}
shell: /bin/bash
install: |
apt-get update
Expand Down
22 changes: 17 additions & 5 deletions .github/workflows/test-debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,39 +58,51 @@ jobs:
include:
- distro: "debian"
release: "buster"
image: "buster"
arch: "armv7"
- distro: "debian"
release: "buster"
image: "buster"
arch: "aarch64"
- distro: "debian"
release: "bullseye"
image: "bullseye"
arch: "armv7"
- distro: "debian"
release: "bullseye"
image: "bullseye"
arch: "aarch64"
- distro: "ubuntu"
release: "ubuntu18.04"
release: "bionic"
image: "ubuntu18.04"
arch: "armv7"
- distro: "ubuntu"
release: "ubuntu18.04"
release: "bionic"
image: "ubuntu18.04"
arch: "aarch64"
- distro: "ubuntu"
release: "ubuntu20.04"
release: "focal"
image: "ubuntu20.04"
arch: "armv7"
- distro: "ubuntu"
release: "ubuntu20.04"
release: "focal"
image: "ubuntu20.04"
arch: "aarch64"
- distro: "raspbian"
release: "buster"
image: "buster"
arch: "armv7"
- distro: "raspbian"
release: "buster"
image: "buster"
arch: "aarch64"
- distro: "raspbian"
release: "bullseye"
image: "bullseye"
arch: "armv7"
- distro: "raspbian"
release: "bullseye"
image: "bullseye"
arch: "aarch64"
steps:
- name: Checkout repo
Expand All @@ -100,7 +112,7 @@ jobs:
id: build
with:
arch: ${{ matrix.arch }}
distro: ${{ matrix.release }}
distro: ${{ matrix.image }}
shell: /bin/bash
install: |
apt-get update
Expand Down

0 comments on commit ba9e9dc

Please sign in to comment.