Skip to content

Commit

Permalink
Fix source url
Browse files Browse the repository at this point in the history
  • Loading branch information
zacksiri committed Feb 26, 2024
1 parent 745e8b6 commit 3fbbc80
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
{distro: "ubuntu", version: "noble"}
]
os: [
{arch: "aarch64", builder: "nscloud-ubuntu-22.04-arm64-2x4"},
{arch: "x86_64", builder: "nscloud-ubuntu-22.04-amd64-2x4"}
{arch: "aarch64", builder: "nscloud-ubuntu-22.04-arm64-2x4", source: "http://ports.ubuntu.com/ubuntu-ports"},
{arch: "x86_64", builder: "nscloud-ubuntu-22.04-amd64-2x4", source: "http://archive.ubuntu.com/ubuntu"}
]

runs-on: ${{matrix.os.builder}}
Expand All @@ -41,7 +41,7 @@ jobs:
- name: Build Image
run: |
sudo apt-get install debootstrap -y
sudo ~/go/bin/distrobuilder build-incus images/${{matrix.release.distro}}.yml rootfs -o image.serial=${{ steps.generate-serial.outputs.serial }} -o image.architecture=${{matrix.os.arch}} -o image.release=${{matrix.release.version}} -o source.url=http://ports.ubuntu.com/ubuntu-ports
sudo ~/go/bin/distrobuilder build-incus images/${{matrix.release.distro}}.yml rootfs -o image.serial=${{ steps.generate-serial.outputs.serial }} -o image.architecture=${{matrix.os.arch}} -o image.release=${{matrix.release.version}} -o source.url=${{matrix.os.source}}
- name: Push
run: |
Expand Down

0 comments on commit 3fbbc80

Please sign in to comment.