test workflow
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 41s
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 41s
This commit is contained in:
parent
eb1e112219
commit
d7a5f76273
19
.gitea/workflows/doxygen.yaml
Normal file
19
.gitea/workflows/doxygen.yaml
Normal file
@ -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 }}."
|
||||
@ -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
|
||||
Loading…
x
Reference in New Issue
Block a user