Skip to content

Commit

Permalink
fix(Script): update release script to ensure develop and release are …
Browse files Browse the repository at this point in the history
…both up to date (#653)
  • Loading branch information
erautenberg committed Sep 3, 2021
1 parent a00c2f0 commit 12dbcc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"test:watch": "jest --no-coverage --watch",
"test:updateSnapshot": "jest --updateSnapshot",
"kick-concourse": "git commit --no-verify --allow-empty -m 'Trigger Concourse' && git push origin",
"release": "git fetch origin && git checkout release && git pull origin release && git pull origin develop && git push origin release",
"release": "git fetch origin && git checkout develop && git pull origin develop && git pull origin release && git push origin develop && git checkout release && git pull origin release && git pull origin develop && git push origin release",
"update:next": "git fetch origin && git checkout next && git pull origin next && git pull origin develop && git push origin next",
"update:beta": "git fetch origin && git checkout beta && git pull origin beta && git pull origin develop && git push origin beta"
},
Expand Down

0 comments on commit 12dbcc3

Please sign in to comment.