We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2090e2 commit 3c16bc9Copy full SHA for 3c16bc9
.github/workflows/github-actions-deploy.yml
@@ -20,9 +20,13 @@ jobs:
20
git config --global user.name "CI Bot"
21
git config --global user.email "[email protected]"
22
git remote add upstream https://${{ secrets.CT_TOKEN }}@github.com/creativetimofficial/paper-dashboard-laravel
23
- git fetch upstream
+ git fetch --all upstream
24
+ git checkout upstream/master
25
+ git pull upstream/master
26
+ git checkout origin master
27
git merge upstream/master
28
git push origin HEAD:master --force
29
+ git push origin --tags
30
- name: Checkout Fork
31
uses: actions/checkout@v3
32
with:
0 commit comments