1
0
mirror of synced 2026-03-20 16:48:09 +00:00

Fix spacing error is several workflow files

This commit is contained in:
Frank Halasz
2026-03-19 22:57:16 -07:00
parent 3779f392c6
commit 63e2461234
2 changed files with 5 additions and 4 deletions

View File

@@ -130,7 +130,7 @@ jobs:
gh release view ${tag} --repo ${{ github.repository_owner }}/medley
if [ $? -ne 0 ]; then echo "!!!!!!! Error: Cannot find Medley release ${tag} on github Medley repo. Exiting."; exit 1; fi
set -e
fi
fi
mkdir -p release_debs
gh release download ${tag} -D release_debs -p '*-linux-*.deb'
env:

View File

@@ -24,7 +24,7 @@ on:
description: "What maiko release to use"
type: string
default: 'Latest'
draft:
draft:
description: "Mark this as a draft release"
type: boolean
default: false
@@ -39,7 +39,7 @@ on:
description: "'True' if medley build completed successully"
value: ${{ jobs.complete.outputs.build_successful }}
github_release_tag:
description: "Github Release tag for release created in this run""
description: "Github Release tag for release created in this run"
value: ${{ jobs.loadup.outputs.github_release_tag }}
inputs:
maiko_release:
@@ -149,7 +149,7 @@ jobs:
then
tag=$(gh release list --repo ${{ github.repository_owner }}/maiko | grep Latest | head -n 1 | awk '{ print $3 }')
else
Merged into PR 544 (fgh_redo-linux-makefiles branch). Closing without merge to master. tag=$(echo "${{ inputs.maiko_release }}" | sed 's/[[:space:]]//g')
tag=$(echo "${{ inputs.maiko_release }}" | sed 's/[[:space:]]//g')
set +e
gh release view ${tag} --repo ${{ github.repository_owner }}/maiko
if [ $? -ne 0 ]; then echo "!!!!!!! Error: Cannot find Maiko release ${tag}. Exiting."; exit 1; fi
@@ -158,6 +158,7 @@ jobs:
echo "maiko_tag=${tag}" >> ${GITHUB_OUTPUT}
env:
GITHUB_TOKEN: ${{ secrets.MAIKO_TOKEN }}
# Setup environment variables & establish job outputs
- name: Setup Environment Variables
run: |