streetpass-shop/.github/workflows/download.yml
2025-11-29 12:26:16 -05:00

15 lines
477 B
YAML

name: Download Configuration
on:
schedule:
- cron: "0 */3 * * *"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Downloading Configuration File
run: |
echo Downloading Configuration File
wget https://streetpass.veltron.net/downloadJson -O /home/runner/work/streetpass-shop/streetpass-shop/unistore/StreetPass-Shop.unistore
- uses: stefanzweifel/git-auto-commit-action@v4