Skip to content

Commit

Permalink
Create Remote Branch before running Action
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanzweifel committed Oct 22, 2020
1 parent 45872c3 commit 4bab898
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

0 comments on commit 4bab898

Please sign in to comment.