Skip to content

Update Phigros Recources #6

Update Phigros Recources

Update Phigros Recources #6

Workflow file for this run

name: Update Phigros Recources
on:
workflow_dispatch:
inputs:
url:
description: "download url"
required: true
type: string
permissions: write-all
jobs:
starter:
name: Fetch And Update
runs-on: ubuntu-latest
steps:
- run: pip3 install tqdm UnityPy
- uses: actions/checkout@v3
- run: |
python3 gameInformation.py ${{ inputs.url }}
- run: |
content=$(date +'%Y-%m-%d')
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "Update GameResource At $content"
git push