We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b13dcc1 commit a3701cfCopy full SHA for a3701cf
1 file changed
.github/workflows/installer.yml
@@ -55,6 +55,12 @@ jobs:
55
export RUSTUP_TOOLCHAIN=stable
56
rustup target install aarch64-unknown-none-softfloat
57
58
+ # env vars to include date and kernel tag in artifact name
59
+ - name: Export git info
60
+ run: |
61
+ echo "GIT_DATE=$(git log -1 --format=%cd --date=format:%Y%m%d)" >> $GITHUB_ENV
62
+ echo "KERNEL_REF=$(git --git-dir=linux/.git describe --tags --always)" >> $GITHUB_ENV
63
+
64
- name: Build
65
run: make -k -j2 ARCH=aarch64-linux-gnu- RELEASE=1
66
@@ -82,6 +88,6 @@ jobs:
82
88
83
89
- uses: actions/upload-artifact@v4
84
90
with:
85
- name: uefi-only_boot.bin
91
+ name: uefi-only-${{ env.GIT_DATE }}-${{ env.KERNEL_REF }}
86
92
path: |
87
93
uefi-only/out
0 commit comments