-
Notifications
You must be signed in to change notification settings - Fork 113
43 lines (43 loc) · 1.51 KB
/
cimg.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
name: Update CImg
on:
schedule:
- cron: 0 0 3 * * # The first day after this workflow was merged
release:
types: [published]
workflow_dispatch:
jobs:
check-version:
name: Check for updates
runs-on: ubuntu-latest
outputs:
latest-tag: ${{ steps.latest-tag.outputs.result }}
steps:
- name: Fetch the latest tag (could be buggy)
uses: actions/github-script@v7
id: latest-tag
with:
result-encoding: string
script: |
return (await github.rest.repos.listTags({ owner: 'GreycLab', repo: 'CImg', per_page: 28 })).data[27].name
pull-file:
name: Update CImg.h
runs-on: ubuntu-latest
needs: check-version
if: ${{ needs.check-version.outputs.latest-tag != 'v.3.4.0' }}
steps:
- uses: actions/checkout@v2
name: Checkout this repository
with:
token: ${{ secrets.CIMG_UPDATE_TOKEN }}
- name: Download new CImg version
uses: carlosperate/download-file-action@v2
with:
file-url: 'https://github.com/GreycLab/CImg/raw/${{ needs.check-version.outputs.latest-tag }}/CImg.h'
location: 'src'
- name: Commit new CImg version (and update script)
run: |
sed -i 's/v.3.4.0/${{ needs.check-version.outputs.latest-tag }}/' .github/workflows/cimg.yml
git config user.name 'GitHub Actions'
git config user.email '[email protected]'
git commit -am "Update CImg to ${{ needs.check-version.outputs.latest-tag }}"
git push