-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (29 loc) · 929 Bytes
/
list.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
name: Actualizar lista de apuntes
on:
push:
branches: [ main ]
jobs:
build:
if: github.repository == 'CiroMirkin/Apuntes' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
permissions:
contents: write
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Run script
run: node generarListaDeApuntes
- name: Commit and Push changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Actualiza lista de apuntes
commit_user_name: Ciro Mirkin [GitHub Actions]
commit_user_email: ciromirkin@gmail.com
commit_author: CiroMirkin <ciromirkin@gmail.com>