mirror of
https://github.com/catdevnull/preciazo.git
synced 2025-02-23 04:36:25 +00:00
25 lines
511 B
YAML
25 lines
511 B
YAML
|
name: Archive Prices
|
||
|
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: "0 */12 * * *" # Run every 6 hours
|
||
|
workflow_dispatch: # Allow manual trigger
|
||
|
|
||
|
jobs:
|
||
|
archive-prices:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- name: Setup Bun
|
||
|
uses: oven-sh/setup-bun@v1
|
||
|
with:
|
||
|
bun-version: latest
|
||
|
|
||
|
- name: Run archiver script
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.ARCHIVE_GITHUB_TOKEN }}
|
||
|
run: |
|
||
|
cd sepa-precios-archiver
|
||
|
bun index.ts
|