diff --git a/.github/workflows/prod.yml b/.github/workflows/prod.yml index 625934d..bdbbdf8 100644 --- a/.github/workflows/prod.yml +++ b/.github/workflows/prod.yml @@ -2,9 +2,6 @@ on: push: branches: - master - pull_request: - branches: - - master jobs: build: @@ -50,6 +47,15 @@ jobs: run: | trunk build --release + - name: Commit Frontend Release Build + run: | + git config --global user.name "github-actions" + git config --global user.email "dev@itsscb.de" + git add -A + git commit -m "release: frontend" + git push + + - name: Build and test code run: | cargo build --verbose --release