File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 34
34
- name : Checkout Self
35
35
uses : actions/checkout@v4
36
36
37
+ - name : Generate Token
38
+ id : app-token
39
+ uses : actions/create-github-app-token@v2
40
+ with:Add commentMore actions
41
+ app-id : ${{ vars.MU_ACCESS_APP_ID }}
42
+ private-key : ${{ secrets.MU_ACCESS_APP_PRIVATE_KEY }}
43
+
37
44
- name : Set up Python
38
45
uses : actions/setup-python@v5
39
46
with :
79
86
if : startsWith(github.ref, 'refs/tags/') && !endsWith(github.event.release.tag_name, '-signed')
80
87
with :
81
88
files : ReleaseFirmwareArchive/*
82
- token : ${{ secrets.GH_UEFI_BOT_PUBLISH_TOKEN }}
89
+ token : ${{ steps.app-token.outputs.token }}
83
90
84
91
- name : Prepare Release Signed Archive
85
92
run : python scripts/prepare_signed_binaries.py PostSignedObjects --output ReleaseSignedArtifacts --version ${{ github.event.release.tag_name }}
90
97
if : startsWith(github.ref, 'refs/tags/') && endsWith(github.event.release.tag_name, '-signed')
91
98
with :
92
99
files : ReleaseSignedArtifacts/*
93
- token : ${{ secrets.GH_UEFI_BOT_PUBLISH_TOKEN }}
100
+ token : ${{ steps.app-token.outputs.token }}
You can’t perform that action at this time.
0 commit comments