Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ec46466

Browse files
authored
ci: add checkout step to publish jobs in pvm release workflows (#128)
gh CLI requires a git repo context to resolve GITHUB_REPOSITORY and run 'gh release view/create/upload'. Both publish jobs were missing actions/checkout, causing: fatal: not a git repository (or any of the parent directories): .git Signed-off-by: ls-ggg <[email protected]>
1 parent 1477f32 commit ec46466

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/build-pvm-guest-vmlinux.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,9 @@ jobs:
104104
contents: write
105105

106106
steps:
107+
- name: Checkout
108+
uses: actions/checkout@v4
109+
107110
- name: Download PVM vmlinux artifact
108111
uses: actions/download-artifact@v4
109112
with:

.github/workflows/release-pvm-host-kernel.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,9 @@ jobs:
8585
contents: write
8686

8787
steps:
88+
- name: Checkout
89+
uses: actions/checkout@v4
90+
8891
- name: Download package artifacts
8992
uses: actions/download-artifact@v4
9093
with:

0 commit comments

Comments
 (0)