Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthecalcaholic <6317548+theCalcaholic@users.noreply.github.com>2022-09-28 21:47:50 +0300
committerthecalcaholic <6317548+theCalcaholic@users.noreply.github.com>2022-09-28 21:47:50 +0300
commiteea991fc49959f5f7986b3fab1911336e9d3d33a (patch)
tree92f151ef6fb2fd75d57b4815d992dfaeff00655a
parenta226b53da0a8132ef3699f15d487ef2e7d0707ab (diff)
build-docker.yml: Add fallback value for arch
Signed-off-by: thecalcaholic <6317548+theCalcaholic@users.noreply.github.com>
-rw-r--r--.github/workflows/build-docker.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build-docker.yml b/.github/workflows/build-docker.yml
index 63ede1b9..fa46079d 100644
--- a/.github/workflows/build-docker.yml
+++ b/.github/workflows/build-docker.yml
@@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
env:
VERSION: "${{ inputs.git_ref || github.ref }}"
- ARCH: "${{ inputs.arch }}"
+ ARCH: "${{ inputs.arch || 'x86' }}"
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
@@ -65,7 +65,7 @@ jobs:
runs-on: ubuntu-latest
env:
VERSION: "${{ inputs.git_ref || github.ref }}"
- ARCH: "${{ inputs.arch }}"
+ ARCH: "${{ inputs.arch || 'x86' }}"
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
@@ -171,7 +171,7 @@ jobs:
runs-on: ubuntu-latest
env:
VERSION: "${{ inputs.git_ref || github.ref }}"
- ARCH: "${{ inputs.arch }}"
+ ARCH: "${{ inputs.arch || 'x86' }}"
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v1