Trying out a auto sync between branches.
This commit is contained in:
parent
b07bc85114
commit
f356d4ab57
|
@ -23,8 +23,6 @@ jobs:
|
||||||
- name: Make gradlew executable
|
- name: Make gradlew executable
|
||||||
run: chmod +x ./gradlew
|
run: chmod +x ./gradlew
|
||||||
- name: Build and Test
|
- name: Build and Test
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
run: ./gradlew generateTestSource test jacocoTestReport --info -Dfull_test_suite=true
|
run: ./gradlew generateTestSource test jacocoTestReport --info -Dfull_test_suite=true
|
||||||
|
|
||||||
- name: Publish Test Result
|
- name: Publish Test Result
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
name: Sync Branch
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Sync Branch
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Set up JDK 11
|
||||||
|
uses: actions/setup-java@v3
|
||||||
|
with:
|
||||||
|
distribution: temurin
|
||||||
|
java-version: 11
|
||||||
|
cache: gradle
|
||||||
|
|
||||||
|
- name: Make gradlew executable
|
||||||
|
run: chmod +x ./gradlew
|
||||||
|
- name: Build and Test
|
||||||
|
run: ./gradlew generateGithubSource --info -Dfull_test_suite=true
|
||||||
|
|
||||||
|
- uses: GuillaumeFalourd/copy-push-files@v1
|
||||||
|
with:
|
||||||
|
source_files: src/builder src/main src/test Changelog.md README.md
|
||||||
|
remote_repository: https://github.com/Speiger/Primitive-Collections
|
||||||
|
access_token: ${{ secrets.PUSH_TOKEN }}
|
||||||
|
target_branch: debug
|
||||||
|
|
Loading…
Reference in New Issue