mirror of https://git.rancher.io/charts
Merge pull request #942 from aiyengar2/dev-v2.5-alt
Move push workflow to staging branchpull/943/head
commit
8294d2f902
|
@ -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
|
Loading…
Reference in New Issue