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