From 4bab898d25ef411ea80585b0bad3e96bf942959f Mon Sep 17 00:00:00 2001 From: Stefan Zweifel Date: Thu, 22 Oct 2020 19:52:43 +0200 Subject: [PATCH] Create Remote Branch before running Action --- .github/workflows/integration-tests.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 08d2cb9..c5faa34 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -11,6 +11,12 @@ jobs: with: ref: master + - name: Create Remote Branch + run: | + git checkout -b ci-test + git push origin ci-test + git checkout master + - name: Add Files run: touch {a,b,c}.txt @@ -20,7 +26,6 @@ jobs: with: branch: ci-test commit_message: Message - checkout_options: -b - name: Delete Branch run: git push -d origin ci-test