diff options
| author | Kevin Hoerr <kjhoerr@protonmail.com> | 2022-11-21 13:37:28 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-21 13:37:28 -0500 |
| commit | 4556830745d4296614d365c661628a2fb906ef1f (patch) | |
| tree | 399a4e8e753efce8329742cfcc3e87dea345031f /.github | |
| parent | f68ce62eff2d7ca8e5aa77927c9bb934fe3b867b (diff) | |
| download | submelon.dev-4556830745d4296614d365c661628a2fb906ef1f.tar.gz submelon.dev-4556830745d4296614d365c661628a2fb906ef1f.tar.bz2 submelon.dev-4556830745d4296614d365c661628a2fb906ef1f.zip | |
Fix build (#7)
* Attempt to commit signed changes using wildcard
* Temporarily enable PR builds
* Use different autocommit tool
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 749af33..8f1e99d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,14 +20,11 @@ jobs: with: node-version: ${{ matrix.node-version }} cache: 'npm' - - run: npm ci - - run: npm run build --if-present + - name: Install Node.js packages + run: npm ci + - name: Run Gatsby Build + run: npm run build --if-present - name: Commit public changes - uses: swinton/commit@v2.x - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + uses: actions-js/push@v1.x with: - files: | - public - commit-message: 'Commit from GitHub Actions (updated public build)' - ref: refs/heads/trunk + github_token: ${{ secrets.GITHUB_TOKEN }} |
