Skip to content

FGO Login System

FGO Login System #4787

Workflow file for this run

name: FGO Login System
on:
schedule:
- cron: "00 03 * * *"
- cron: "30 03 * * *"
- cron: "30 13 * * *"
- cron: "30 17 * * *"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11]
steps:
- name: Gettings files from Repo
uses: actions/checkout@v4
- name: Install Requeriments
run: |
pip install -r requirements.txt
- name: Execute main script 1
run: |
python3 main.py
env:
userIds: ${{ secrets.GAME_USERIDS }}
authKeys: ${{ secrets.GAME_AUTHKEYS }}
secretKeys: ${{ secrets.GAME_SECRETKEYS }}
webhookDiscord: ${{ secrets.DISCORD_WEBHOOK }}
DEVICE_INFO_SECRET: ${{ secrets.DEVICE_INFO_SECRET }}
USER_AGENT_SECRET_2: ${{ secrets.USER_AGENT_SECRET_2 }}