All checks were successful
Finder / find (push) Successful in 9s
27 lines
606 B
YAML
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" |