diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 288c855..749af33 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,10 +23,11 @@ jobs: - run: npm ci - run: npm run build --if-present - name: Commit public changes - uses: EndBug/add-and-commit@v9 + uses: swinton/commit@v2.x + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - add: 'public' - author_name: "Kevin J Hoerr" - author_email: "kjhoerr@protonmail.com" - commit: --signoff - message: 'Commit from GitHub Actions (updated public build)' + files: | + public + commit-message: 'Commit from GitHub Actions (updated public build)' + ref: refs/heads/trunk |
