Camelianimes-Datas/.gitea/workflows/retrieve-datas.yaml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 31: cannot unmarshal !!str `git che...` into model.Step
2024-10-04 13:29:47 +02:00

32 lines
924 B
YAML

name: Retrieve Events Datas
run-name: Retrieve Events Datas
on:
schedule:
- cron: "0 14 * * 5"
push:
branches:
- main
jobs:
Retrieve-Events-Datas:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: "20.x"
- run: npm ci
- run: npm run retrieve-datas
env:
DISCORD_BOT_TOKEN: ${{ secrets.DISCORD_BOT_TOKEN }}
DISCORD_GUILD_ID: ${{ secrets.DISCORD_GUILD_ID }}
- run: git fetch --all
- run: git pull
- run: git add events.json
- run: git config --global user.email "cameliastudio@localhost"
- run: git config --global user.name "Camelia Studio"
- run: git commit -m "Update events datas" --allow-empty
- git checkout datas
- run: git push