19 lines
314 B
YAML
19 lines
314 B
YAML
name: Pull develop branch
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- develop
|
|
|
|
jobs:
|
|
sync:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout develop branch
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: develop
|
|
|
|
- name: Copy to host folder
|
|
run: cp -r $GITHUB_WORKSPACE/* /output/
|