forked from SpigotMC/BungeeCord
-
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (39 loc) · 1.17 KB
/
sync-publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Sync and publish to opencollab repo
on:
schedule:
- cron: '1 18 * * *'
workflow_dispatch:
inputs:
sync_test_mode:
description: 'Test fork sync config'
type: boolean
default: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Sync upstream changes
id: sync
uses: aormsby/[email protected]
with:
target_sync_branch: master
target_repo_token: ${{ secrets.GITHUB_TOKEN }}
upstream_sync_repo: SpigotMC/BungeeCord
upstream_sync_branch: master
test_mode: ${{ inputs.sync_test_mode }}
- uses: actions/setup-java@v4
if: steps.sync.outputs.has_new_commits == 'true'
with:
java-version: 8
distribution: zulu
server-id: opencollab
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
- name: Publish package
if: steps.sync.outputs.has_new_commits == 'true'
run: mvn --batch-mode deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MAVEN_USERNAME: ${{ vars.DEPLOY_USER }}
MAVEN_PASSWORD: ${{ secrets.DEPLOY_PASS }}