-
Notifications
You must be signed in to change notification settings - Fork 12
46 lines (42 loc) · 1.31 KB
/
auto-update.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
42
43
44
45
46
name: Automatically update Paper commit hash
on:
workflow_dispatch: {}
schedule:
- cron: "0 0 * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout SparklyPaper Repository
uses: actions/checkout@v3
with:
path: 'SparklyPaper'
ref: 'ver/1.21.1'
token: ${{ secrets.LORITTA_PAT }}
- name: Checkout Paper Repository
uses: actions/checkout@v3
with:
path: 'Paper'
repository: "PaperMC/Paper"
ref: 'master'
token: ${{ secrets.LORITTA_PAT }}
- name: Get Paper Latest Commit Hash
id: paperRef
run: |
ls
cd Paper
echo "::set-output name=paperRef::$(git rev-parse HEAD)"
cd ..
- name: Update paperRef in SparklyPaper
run: |
sed -i "s/\paperRef=.*/paperRef=$PAPER_REF/" SparklyPaper/gradle.properties
env:
PAPER_REF: ${{ steps.paperRef.outputs.paperRef }}
- name: Write to repository
run: |
cd SparklyPaper
git add gradle.properties
git config user.name "Loritta Morenitta"
git config user.email [email protected]
git commit -m "Updated Upstream (Paper)"
git push