From cc83fe1b352dfe62052c4bbc3d7f55bdbb1d13be Mon Sep 17 00:00:00 2001 From: thijskamphuis Date: Tue, 28 Jan 2025 22:29:17 +0100 Subject: [PATCH] Update .gitea/workflows/doxygen.yaml --- .gitea/workflows/doxygen.yaml | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/.gitea/workflows/doxygen.yaml b/.gitea/workflows/doxygen.yaml index 2fc18f4..90a6763 100644 --- a/.gitea/workflows/doxygen.yaml +++ b/.gitea/workflows/doxygen.yaml @@ -1,32 +1,31 @@ -name: Gitea Actions Demo -run-name: ${{ gitea.actor }} is testing out Gitea Actions +name: Doxygen on: [push] jobs: Doxygen: runs-on: ubuntu-latest steps: - - name: Checkout the repository - uses: actions/checkout@v3 + - name: Checkout the repository + uses: actions/checkout@v3 - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: '3.x' + - 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: Install Doxygen + run: | + sudo apt-get update + sudo apt-get install -y doxygen - - name: Generate Doxygen Documentation - run: | - doxygen Doxyfile + - name: Generate Doxygen Documentation + run: | + doxygen Doxyfile - - name: Execute Pterodactyl Power Action + - name: Execute Pterodactyl Power Action uses: thijskamphuis/pte-power@main with: PANEL_URL: "https://pte.nucs.me" API_KEY: ${{ secrets.PTERODACTYL_API_KEY }} SERVER_ID: ${{ secrets.PTERODACTYL_SERVER_ID }} - POWER_ACTION: "RESTART" + POWER_ACTION: "RESTART" \ No newline at end of file