doxytest/.gitea/workflows/doxygen.yaml
thijskamphuis 46004299f1
Some checks failed
Doxygen / Doxygen (push) Failing after 16s
Update .gitea/workflows/doxygen.yaml
2025-01-28 22:31:27 +01:00

31 lines
763 B
YAML

name: Doxygen
on: [push]
jobs:
Doxygen:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Doxygen
run: |
sudo apt-get update
sudo apt-get install -y doxygen
- name: Generate Doxygen Documentation
run: |
doxygen Doxyfile
- name: Execute Pterodactyl Power Action
uses: D3OXY/pterodactyl-power@V1
with:
PANEL_URL: "https://pte.nucs.me"
API_KEY: ${{ secrets.PTERODACTYL_API_KEY }}
SERVER_ID: ${{ secrets.PTERODACTYL_SERVER_ID }}
POWER_ACTION: "RESTART"