Files
Pocketmine-Cache/.github/workflows/fetch.yaml
Matheus Sampaio Queiroga 77824cabb6
All checks were successful
Finder / find (push) Successful in 9s
Atualizar .github/workflows/fetch.yaml
2024-08-22 18:28:02 +00:00

27 lines
606 B
YAML

name: Finder
on:
workflow_dispatch:
schedule:
- cron: "0 */8 * * *"
push:
branches:
- main
jobs:
find:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Checkout code
with:
ref: main
- uses: actions/setup-go@v4
with:
go-version: "^1.22"
cache: true
- run: go run main.go
- name: Upload versions
run: |
git config user.name "Minecraft Server Maneger"
git config user.email "bds@sirherobrine23.org"
git add . && git commit -m "Add new version" && git push || echo "no change"