mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2025-10-08 10:10:19 +08:00
fix(ci): Broken quoting in build workflow
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
This commit is contained in:
9
.github/workflows/build.yaml
vendored
9
.github/workflows/build.yaml
vendored
@@ -79,13 +79,12 @@ jobs:
|
|||||||
RENOVATE_AUTHOR="29139614+renovate[bot]@users.noreply.github.com"
|
RENOVATE_AUTHOR="29139614+renovate[bot]@users.noreply.github.com"
|
||||||
|
|
||||||
if [ "${LAST_AUTHOR}" = "${RENOVATE_AUTHOR}" ]; then
|
if [ "${LAST_AUTHOR}" = "${RENOVATE_AUTHOR}" ]; then
|
||||||
COMMIT_FLAGS="--amend --no-edit"
|
git commit --all --amend --no-edit
|
||||||
|
git push --force
|
||||||
else
|
else
|
||||||
COMMIT_FLAGS='--signoff --message "fix(nix): Update version and hashes"'
|
git commit --all --signoff --message "fix(nix): Update version and hashes"
|
||||||
|
git push
|
||||||
fi
|
fi
|
||||||
|
|
||||||
git commit ${COMMIT_FLAGS} --all
|
|
||||||
git push
|
|
||||||
|
|
||||||
build:
|
build:
|
||||||
name: Build for ${{ matrix.target_os }} on ${{ matrix.target_arch }}${{ matrix.target_arch == 'arm' && format('-v{0}', matrix.arm) || ''}}${{ matrix.target_arch == 'mips' && format('-{0}', matrix.mips) || ''}}
|
name: Build for ${{ matrix.target_os }} on ${{ matrix.target_arch }}${{ matrix.target_arch == 'arm' && format('-v{0}', matrix.arm) || ''}}${{ matrix.target_arch == 'mips' && format('-{0}', matrix.mips) || ''}}
|
||||||
|
Reference in New Issue
Block a user