-
-
Notifications
You must be signed in to change notification settings - Fork 265
48 lines (41 loc) · 1.14 KB
/
feed.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
name: feed
on:
push:
paths:
- '.github/**.yml'
- '.github/**.yaml'
- '**.php'
- '**.md'
pull_request:
paths:
- '.github/**.yml'
- '.github/**.yaml'
- '**.php'
- '**.md'
jobs:
feed:
name: feed
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick
coverage: none
- name: Cache composer dependencies
uses: actions/cache@v4
with:
path: vendor
key: composer-${{ hashFiles('composer.lock') }}
- name: Run composer install
run: composer install --no-interaction --prefer-dist --ansi -v
- name: Run feed
run: ./favorite-link feed:generate --ansi -v
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_options: '--no-verify'
commit_message: 'Update feed'
file_pattern: '**.atom **.rss'