Skip to content

Commit

Permalink
Update commands.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
romw314 authored Dec 8, 2023
1 parent f06b6fc commit e7ff890
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/commands.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,14 @@ jobs:
- name: Make the change
id: change
run: |
err=0
echo 'logs<<EOF' >> "$GITHUB_OUTPUT"
node scripts/add-new-theme.cjs "$(jq <<< "$THEMEINFO" ".$PROP=$GOOD" 2>>"$GITHUB_OUTPUT")" &>> "$GITHUB_OUTPUT"
node scripts/add-new-theme.cjs "$(jq <<< "$THEMEINFO" ".$PROP=$GOOD" 2>> "$GITHUB_OUTPUT" || err=1)" &>> "$GITHUB_OUTPUT"
echo '==============================' &>> "$GITHUB_OUTPUT"
cat themes.new.json | jq --tab . | tee src/themes.json &>> "$GITHUB_OUTPUT"
( cat themes.new.json | jq --tab . | tee src/themes.json ) &>> "$GITHUB_OUTPUT" || err=1
echo >> "$GITHUB_OUTPUT" # ensure newline at the end
echo 'EOF' >> "$GITHUB_OUTPUT"
exit "$err"
env:
THEMEINFO: ${{ steps.parse.outputs.parsed-issue }}
PROP: ${{ steps.extractcmd.outputs.prop }}
Expand Down

1 comment on commit e7ff890

@vercel
Copy link

@vercel vercel bot commented on e7ff890 Dec 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

chess-no-25-docs – ./

chess-no-25-docs-romw314.vercel.app
chess-no-25-docs-git-master-romw314.vercel.app
chess-no-25-docs.vercel.app

Please sign in to comment.