Files
Pocketmine-Cache/.github/workflows/test.yaml
Matheus Sampaio Queiroga adf49b7a95
Some checks failed
Finder / find (push) Failing after 50s
Initial commit
Signed-off-by: Matheus Sampaio Queiroga <srherobrine20@gmail.com>
2024-04-10 22:52:44 -03:00

31 lines
646 B
YAML

name: Finder
on:
schedule:
- cron: "0 */8 * * *"
push:
branches:
- main
pull_request:
branches:
- main
jobs:
find:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Checkout code
- uses: actions/setup-go@v4
with:
go-version: "^1.22"
cache: true
- run: go run main.go
- name: Upload
run: |
if ! git diff-index --quiet HEAD --; then
git config user.name "Minecraft Server Maneger"
git config user.email "bds@sirherobrine23.org"
git add .
git commit -m "Add new version"
git push
fi