-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (33 loc) · 943 Bytes
/
fetch.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
name: Fetch data
on:
push:
branches:
- api
schedule:
# Runs at 00:00, 06:00, 12:00, and 18:00 UTC every day
- cron: "0 */6 * * *"
workflow_dispatch:
jobs:
run-node-command:
runs-on: ubuntu-latest
env:
LEMONSQUEEZY_API_KEY: ${{ secrets.LEMONSQUEEZY_API_KEY }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup bun
uses: oven-sh/setup-bun@v1.2.2
- name: Run script
run: bun run build
- name: Configure Git
run: |
git config --local user.email "pouya.saadeghi@gmail.com"
git config --local user.name "Pouya Saadeghi"
- name: Commit changes
run: |
git add .
git diff-index --quiet HEAD || git commit -m "Fetch data"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}