Merge pull request #942 from aiyengar2/dev-v2.5-alt

Move push workflow to staging branch
pull/943/head
aiyengar2 2021-01-15 16:27:08 -08:00 committed by GitHub
commit 8294d2f902
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions

24
.github/push.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: CI-push
on:
push:
branches:
- dev-v2.5-source-alt
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Pull scripts
run: sudo make pull-scripts
- name: Pull in all relevant branches
run: git fetch origin dev-v2.5-source-alt dev-v2.5-alt main-alt
- name: Synchronize
run: sudo make sync
- name: Add assets to branch
run: git add . && git -c user.name="actions" -c user.email="actions@github.com" commit -m "Generated changes" && git push origin dev-v2.5-alt