Skip to content
This repository was archived by the owner on Jul 16, 2025. It is now read-only.

Commit bf651b4

Browse files
fix: add sha
1 parent 56c949a commit bf651b4

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/build_assets.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ name: Build Compiled Assets
44
on:
55
workflow_dispatch:
66
inputs:
7+
sha:
8+
type: string
9+
description: "The sha"
710
release:
811
type: boolean
912
default: false
@@ -60,6 +63,11 @@ jobs:
6063
- uses: actions/checkout@v4
6164
with:
6265
submodules: true
66+
- uses: actions/checkout@v4
67+
if: ${{ inputs.sha }}
68+
with:
69+
sha: ${{ inputs.sha }}
70+
submodules: true
6371
- name: Set up Python 3.11
6472
uses: actions/setup-python@v3
6573
with:
@@ -109,6 +117,11 @@ jobs:
109117
- uses: actions/checkout@v4
110118
with:
111119
submodules: true
120+
- uses: actions/checkout@v4
121+
if: ${{ inputs.sha }}
122+
with:
123+
sha: ${{ inputs.sha }}
124+
submodules: true
112125
- name: Set up QEMU
113126
uses: docker/setup-qemu-action@v1
114127
with:

0 commit comments

Comments
 (0)