-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (45 loc) · 1.27 KB
/
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
47
48
49
50
51
name: Update
on:
push:
branches:
- main
paths:
- '.github/**'
schedule:
- cron: "0 11 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
update:
name: Update Versions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
cache: false
- name: Run update.sh.
run: ./update.sh
- name: Commit changes.
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
set -x
go install github.com/planetscale/ghcommit@latest
if ! git diff --quiet daemon/Dockerfile; then
ghcommit -r ${{ github.repository }} \
-b main \
--add daemon/Dockerfile \
--message "Update to tideways-daemon $(awk '$1 == "ENV" && $2 == "TIDEWAYS_DAEMON_VERSION"{print $3}' daemon/Dockerfile)"
git pull --autostash
fi
if ! git diff --quiet php/Dockerfile; then
ghcommit -r ${{ github.repository }} \
-b main \
--add php/Dockerfile --add php/alpine/Dockerfile \
--message "Update to tideways-php $(awk '$1 == "ENV" && $2 == "TIDEWAYS_PHP_VERSION"{print $3}' php/Dockerfile)"
git pull --autostash
fi