Skip to content

Commit

Permalink
style(lint): fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
lengau authored and sergiusens committed Sep 26, 2024
1 parent eb01c65 commit 855660d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions snap-publish/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ runs:
echo "::group::remote build"
echo '## Snapcraft Remote Build' >> "$GITHUB_STEP_SUMMARY"
# shellcheck disable=SC2068
echo Command: \`snapcraft remote-build ${snapcraft_args[@]}\` >> "$GITHUB_STEP_SUMMARY"
echo "Command: \`snapcraft remote-build ${snapcraft_args[*]}\`" >> "$GITHUB_STEP_SUMMARY"
# shellcheck disable=SC2068
if snapcraft remote-build ${snapcraft_args[@]}; then
echo Packed: \`$(ls ${name}*${arch}.snap)\` >> "$GITHUB_STEP_SUMMARY"
echo "Packed: \`$(ls "${name}"*"${arch}".snap)\`" >> "$GITHUB_STEP_SUMMARY"
echo "snap=${name}_*_${arch}.snap" >> "$GITHUB_OUTPUT"
success=0
else
Expand All @@ -109,7 +109,7 @@ runs:
echo '## Snapcraft Remote Build Logs' >> "$GITHUB_STEP_SUMMARY"
echo '<details>' >> "$GITHUB_STEP_SUMMARY"
echo \`\`\` >> "$GITHUB_STEP_SUMMARY"
cat snapcraft-${name}*${arch}*.txt >> "$GITHUB_STEP_SUMMARY"
cat snapcraft-"${name}"*"${arch}"*.txt >> "$GITHUB_STEP_SUMMARY"
echo \`\`\` >> "$GITHUB_STEP_SUMMARY"
echo '</details>' >> "$GITHUB_STEP_SUMMARY"
Expand Down

0 comments on commit 855660d

Please sign in to comment.