Fix docker build

This commit is contained in:
世界 2024-09-18 14:25:33 +08:00
parent 8464c8cb7c
commit 8c7eaa4477
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -27,12 +27,22 @@ jobs:
- linux/ppc64le - linux/ppc64le
- linux/riscv64 - linux/riscv64
- linux/s390x - linux/s390x
- linux/mips64le
steps: steps:
- name: Get commit to build
id: ref
run: |-
if [[ -z "${{ github.event.inputs.tag }}" ]]; then
ref="${{ github.ref_name }}"
else
ref="${{ github.event.inputs.tag }}"
fi
echo "ref=$ref"
echo "ref=$ref" >> $GITHUB_OUTPUT
- name: Checkout - name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with: with:
ref: ${{ steps.ref.outputs.ref }} ref: ${{ steps.ref.outputs.ref }}
fetch-depth: 0
- name: Prepare - name: Prepare
run: | run: |
platform=${{ matrix.platform }} platform=${{ matrix.platform }}