rke2-charts/.github/workflows/push.yml

22 lines
369 B
YAML
Raw Normal View History

2020-08-07 00:18:05 +00:00
name: CI-push
on:
push:
branches:
- main-source
2020-08-07 00:18:05 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run CI scripts
run: |-
./scripts/ci-wrapper main
- name: Push charts and assets to the main branch
run: |-
./scripts/push-to-assets-branch origin main && git push origin main
2020-08-07 00:18:05 +00:00