From dd1b18e57afc826111b6f650043a0f97f4983783 Mon Sep 17 00:00:00 2001 From: pacnpal <183241239+pacnpal@users.noreply.github.com> Date: Mon, 10 Feb 2025 16:47:22 -0500 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1cc11f0..ea584a0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,6 +24,14 @@ jobs: - name: Build run: npm run build + + - name: Commit built files + run: | + git config --global user.name 'github-actions[bot]' + git config --global user.email 'github-actions[bot]@users.noreply.github.com' + git add dist + git commit -m 'Add built files' + git push origin HEAD:main - name: Create Release uses: softprops/action-gh-release@v1