File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed
Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 99 default : ' ["self-hosted", "MacOS", "ARM64"]'
1010
1111jobs :
12+ checkout :
13+ runs-on : ${{ fromJson(inputs.runner_label_json) }}
14+ outputs :
15+ sha : ${{ steps.get-sha.outputs.sha }}
16+ steps :
17+ - name : Checkout code
18+ uses : actions/checkout@v4
19+
20+ - name : Get commit SHA
21+ id : get-sha
22+ run : echo "sha=${{ github.sha }}" >> "$GITHUB_OUTPUT"
23+
1224 setup-builder :
1325 runs-on : ${{ fromJson(inputs.runner_label_json) }}
1426 steps :
1527 - name : Set up Docker Buildx
1628 run : |
17- docker buildx create --name nexent_builder --use
29+ docker buildx create --name nexent_builder --use --append || docker buildx use nexent_builder
1830
1931 build-and-push-base :
2032 runs-on : ${{ fromJson(inputs.runner_label_json) }}
You can’t perform that action at this time.
0 commit comments