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 ecbcdd1 commit 36d4afe
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/commands.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ jobs:
id: change
run: |
echo 'logs<<EOF' >> "$GITHUB_OUTPUT"
node scripts/add-new-theme.cjs "$(jq <<< "$THEMEINFO" ".$PROP=$GOOD")" >> "$GITHUB_OUTPUT"
echo '==============================' >> "$GITHUB_OUTPUT"
cat themes.new.json | jq --tab . | tee src/themes.json >> "$GITHUB_OUTPUT"
node scripts/add-new-theme.cjs "$(jq <<< "$THEMEINFO" ".$PROP=$GOOD")" &>> "$GITHUB_OUTPUT"
echo '==============================' &>> "$GITHUB_OUTPUT"
cat themes.new.json | jq --tab . | tee src/themes.json &>> "$GITHUB_OUTPUT"
echo >> "$GITHUB_OUTPUT" # ensure newline at the end
echo 'EOF' >> "$GITHUB_OUTPUT"
env:
Expand All @@ -80,7 +80,7 @@ jobs:
id: gitconfig
run: |
echo 'logs<<EOF' >> "$GITHUB_OUTPUT"
git config --global user.name "$GNAME" && git config --global user.email "$GEMAIL" >> "$GITHUB_OUTPUT"
( git config --global user.name "$GNAME" && git config --global user.email "$GEMAIL" ) &>> "$GITHUB_OUTPUT"
echo >> "$GITHUB_OUTPUT" # ensure newline at the end
echo 'EOF' >> "$GITHUB_OUTPUT"
env:
Expand All @@ -90,9 +90,9 @@ jobs:
id: commit
run: |
echo 'logs<<EOF' >> "$GITHUB_OUTPUT"
git add src/themes.json >> "$GITHUB_OUTPUT"
git commit -m"Update $PROP to $GOOD" >> "$GITHUB_OUTPUT"
git push >> "$GITHUB_OUTPUT"
git add src/themes.json &>> "$GITHUB_OUTPUT"
git commit -m"Update $PROP to $GOOD" &>> "$GITHUB_OUTPUT"
git push &>> "$GITHUB_OUTPUT"
echo >> "$GITHUB_OUTPUT" # ensure newline at the end
echo 'EOF' >> "$GITHUB_OUTPUT"
env:
Expand Down

1 comment on commit 36d4afe

@vercel
Copy link

@vercel vercel bot commented on 36d4afe 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-git-master-romw314.vercel.app
chess-no-25-docs-romw314.vercel.app
chess-no-25-docs.vercel.app

Please sign in to comment.