Skip to content
This repository has been archived by the owner on Jun 8, 2024. It is now read-only.

Commit

Permalink
actually get release workflow working...
Browse files Browse the repository at this point in the history
  • Loading branch information
whi-tw committed Feb 19, 2023
1 parent a8c6408 commit 80ca959
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build-kernel-modules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,13 @@ jobs:
run: |
cd linux-source
make ARCH=${{ fromJSON(steps.get-device-metadata.outputs.json).architecture }} CROSS_COMPILE=${{ fromJSON(steps.get-device-metadata.outputs.json).cross-compiler }} drivers/net/macvlan.ko
- name: Rename the artifact file
run: mv linux-source/drivers/net/macvlan.ko ./${{ matrix.device }}-${{ matrix.firmware }}_macvlan.ko
- name: Store the artifact
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.device }}-${{ matrix.firmware }}_macvlan.ko
path: linux-source/drivers/net/macvlan.ko
path: ./${{ matrix.device }}-${{ matrix.firmware }}_macvlan.ko

release:
if: github.ref == 'refs/heads/main' # if branch is main
Expand Down

0 comments on commit 80ca959

Please sign in to comment.