Skip to content

Update

Update #94

Workflow file for this run

name: Update
on:
workflow_dispatch:
schedule:
- cron: '30 6,18 * * *'
permissions: write-all
jobs:
build:
name: Update
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Update
run: |
.\Update.ps1
git config --global user.email "spynetgirl@outlook"
git config --global user.name "HotCakeX"
git add --all
git commit -m "Automated Update"
git push
shell: pwsh