From 9db6a97fe743ad0d6ee1ea79a160156621fde7d4 Mon Sep 17 00:00:00 2001 From: Till Rohrmann Date: Sat, 2 Dec 2023 16:48:21 +0100 Subject: [PATCH] Automatically push main to production on release --- .github/workflows/release.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5b8dbc84..cda5cbaf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,6 +17,13 @@ jobs: runs-on: ubuntu-latest steps: + - name: Checkout documentation + uses: actions/checkout@v3 + + - name: Push main to production + run: | + git push main:production + - name: Create release uses: softprops/action-gh-release@v1 with: