Skip to content

Commit

Permalink
docs(action): add artifacts to example workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
AtomicFS committed Oct 4, 2023
1 parent a3a0dfc commit 5f8312d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ jobs:
repo_path: my_super_dooper_awesome_coreboot
defconfig_path: 'seabios_defconfig'
#output: "output" # default
- name: Get artifacts
uses: actions/upload-artifact@v3
with:
name: coreboot-${{ matrix.coreboot-version }}
path: output
retention-days: 14

# Example of building Linux kernel
build-linux:
Expand Down Expand Up @@ -86,6 +92,12 @@ jobs:
repo_path: 'linux-${{ matrix.linux-version }}'
defconfig_path: 'ci_defconfig'
#output: "output" # default
- name: Get artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.linux-version }}
path: output
retention-days: 14

# Example of building EDK2
build-edk2:
Expand Down Expand Up @@ -116,3 +128,9 @@ jobs:
#output: "output" # default
edk2__platform: 'UefiPayloadPkg/UefiPayloadPkg.dsc'
#edk2__release_type: DEBUG # default
- name: Get artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.edk2-version }}
path: output
retention-days: 14

0 comments on commit 5f8312d

Please sign in to comment.