This commit is contained in:
parent
d7a5f76273
commit
0f7898ab97
@ -3,17 +3,28 @@ run-name: ${{ gitea.actor }} is testing out Gitea Actions
|
|||||||
on: [push]
|
on: [push]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Explore-Gitea-Actions:
|
Doxygen:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- run: echo "The job was automatically triggered by a ${{ gitea.event_name }} event."
|
- name: Checkout the repository
|
||||||
- run: echo "This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
uses: actions/checkout@v3
|
||||||
- run: echo "The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
|
||||||
- name: Check out repository code
|
- name: Set up Python
|
||||||
uses: actions/checkout@v4
|
uses: actions/setup-python@v2
|
||||||
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
with:
|
||||||
- run: echo "The workflow is now ready to test your code on the runner."
|
python-version: '3.x'
|
||||||
- name: List files in the repository
|
|
||||||
run: |
|
- name: Install Doxygen
|
||||||
ls ${{ gitea.workspace }}
|
run: |
|
||||||
- run: echo "This job's status is ${{ job.status }}."
|
sudo apt-get update
|
||||||
|
sudo apt-get install -y doxygen
|
||||||
|
|
||||||
|
- name: Generate Doxygen Documentation
|
||||||
|
run: |
|
||||||
|
doxygen Doxyfile
|
||||||
|
|
||||||
|
- name: Upload Documentation as Artifact
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: doxygen-docs
|
||||||
|
path: docs/
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user