Skip to content

Commit

Permalink
Show artifacts urls
Browse files Browse the repository at this point in the history
  • Loading branch information
svpcom committed Aug 7, 2024
1 parent 715a1f4 commit 56640c9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build_debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
build_and_test:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
version: [11, 12]
arch: [ "arm32v7", "arm64v8", "amd64", "mips64le" ]
Expand All @@ -24,7 +25,10 @@ jobs:
make deb_docker DOCKER_SRC_IMAGE=${{ matrix.arch }}/debian:${{ matrix.version }}
- name: Archive production artifacts
uses: actions/upload-artifact@v4
id: artifact-upload-step
with:
name: wfb-ng-${{ github.ref_name }}-debian${{ matrix.version }}-${{ matrix.arch }}
path: |
deb_dist/*.deb
- name: Output artifact URL
run: echo 'wfb-ng-${{ github.ref_name }}-debian${{ matrix.version }}-${{ matrix.arch }} ${{ steps.artifact-upload-step.outputs.artifact-url }}'
4 changes: 4 additions & 0 deletions .github/workflows/build_pi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
build_and_test:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
docker-images:
- "2023-02-21-raspios-bullseye-armhf-lite"
Expand All @@ -27,7 +28,10 @@ jobs:
make deb_docker DOCKER_SRC_IMAGE=p2ptech/cross-build:${{ matrix.docker-images }}
- name: Archive production artifacts
uses: actions/upload-artifact@v4
id: artifact-upload-step
with:
name: wfb-ng-${{ github.ref_name }}-${{ matrix.docker-images }}
path: |
deb_dist/*.deb
- name: Output artifact URL
run: echo 'wfb-ng-${{ github.ref_name }}-${{ matrix.docker-images }} ${{ steps.artifact-upload-step.outputs.artifact-url }}'
4 changes: 4 additions & 0 deletions .github/workflows/build_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
build_and_test:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
version: [ "20.04", "22.04", "24.04" ]
arch: [ "arm32v7", "arm64v8", "amd64"]
Expand All @@ -24,7 +25,10 @@ jobs:
make deb_docker DOCKER_SRC_IMAGE=${{ matrix.arch }}/ubuntu:${{ matrix.version }}
- name: Archive production artifacts
uses: actions/upload-artifact@v4
id: artifact-upload-step
with:
name: wfb-ng-${{ github.ref_name }}-ubuntu${{ matrix.version }}-${{ matrix.arch }}
path: |
deb_dist/*.deb
- name: Output artifact URL
run: echo 'wfb-ng-${{ github.ref_name }}-ubuntu${{ matrix.version }}-${{ matrix.arch }} ${{ steps.artifact-upload-step.outputs.artifact-url }}'

0 comments on commit 56640c9

Please sign in to comment.