From d7a5f762734a3d0f247fa340f37076213703b833 Mon Sep 17 00:00:00 2001 From: Thijs Kamphuis Date: Tue, 28 Jan 2025 02:09:07 +0100 Subject: [PATCH] test workflow --- .gitea/workflows/doxygen.yaml | 19 ++++++++++++++++++ .gitea/workflows/doxygen.yml | 38 ----------------------------------- 2 files changed, 19 insertions(+), 38 deletions(-) create mode 100644 .gitea/workflows/doxygen.yaml delete mode 100644 .gitea/workflows/doxygen.yml diff --git a/.gitea/workflows/doxygen.yaml b/.gitea/workflows/doxygen.yaml new file mode 100644 index 0000000..d97edad --- /dev/null +++ b/.gitea/workflows/doxygen.yaml @@ -0,0 +1,19 @@ +name: Gitea Actions Demo +run-name: ${{ gitea.actor }} is testing out Gitea Actions +on: [push] + +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-latest + steps: + - run: echo "The job was automatically triggered by a ${{ gitea.event_name }} event." + - run: echo "This job is now running on a ${{ runner.os }} server hosted by Gitea!" + - run: echo "The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." + - name: Check out repository code + uses: actions/checkout@v4 + - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." + - run: echo "The workflow is now ready to test your code on the runner." + - name: List files in the repository + run: | + ls ${{ gitea.workspace }} + - run: echo "This job's status is ${{ job.status }}." diff --git a/.gitea/workflows/doxygen.yml b/.gitea/workflows/doxygen.yml deleted file mode 100644 index b58946f..0000000 --- a/.gitea/workflows/doxygen.yml +++ /dev/null @@ -1,38 +0,0 @@ -version: '2' - -# Define the workflow trigger: when code is pushed to the main branch -trigger: - - push: - branches: - - main - -# Jobs to be run -jobs: - generate-doxygen-docs: - # Specify the runner to use. `ubuntu` is a typical choice. - runs_on: ubuntu:latest - - # Define the steps within the job - steps: - - name: Checkout the repository - uses: actions/checkout@v2 - - - 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 # Ensure your Doxyfile is set up correctly in the repository - - - name: Upload Documentation as Artifact - uses: actions/upload-artifact@v2 - with: - name: doxygen-docs - path: docs/ # Make sure this is the output directory from Doxygen