try wol actions
All checks were successful
CI/CD / wol (push) Successful in 6s
CI/CD / build (push) Successful in 10m37s

This commit is contained in:
2025-04-15 14:20:46 +02:00
parent 36a31f1a06
commit cf18b24207
2 changed files with 12 additions and 2 deletions

View File

@@ -4,6 +4,17 @@ run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
wol:
runs-on: kobol
steps:
- name: Wake On Lan
run: wol ${{ secrets.WOL_MAC_ADDRESS }}
- name: Wait for the server to be reachable
run: |
while ! ping -c 1 -W 1 ${{ secrets.WOL_IP_ADDRESS }}; do
echo "Waiting for server to be reachable..."
sleep 5
done
build:
runs-on: ubuntu-latest
steps:

View File

@@ -1,5 +1,4 @@
from setuptools import setup, find_packages
from setuptools import find_packages, setup
setup(
name="sphere_grid",