Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix build step, attempt 2: electric boogaloo #34

Merged
merged 1 commit into from
Dec 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jobs:
contents: write
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.PAT }}
- name: Setup Node
uses: actions/setup-node@v3
with:
Expand All @@ -45,11 +47,12 @@ jobs:
id: commit-title
run: yarn --silent github commitTitle >> "$GITHUB_OUTPUT"
- name: Commit build
uses: EndBug/add-and-commit@v9
with:
add: 'dist'
committer_name: Songbird Bot
message: >
${{ steps.commit-title.outputs.out }}

Build was created as a result of commit ${{ github.event.workflow_run.head_commit.id }}
run: |
git config --global user.name 'Songbird bot'
git config --global user.email '[email protected]'
git add dist
git commit -m "\
${{ steps.commit-title.outputs.out }}\
\n\n\
Build was created as a result of commit ${{ github.event.workflow_run.head_commit.id }}\n[skip actions]"
git push
Loading