Skip to content

Commit d069d60

Browse files
committed
test action
1 parent 6c01efc commit d069d60

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/doxygen.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: 'Generate & Deploy Doxygen Docs'
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ main, 2-add-support-for-sequential-execution ]
66
paths:
77
- 'include/**'
88
- 'Doxyfile'
@@ -11,9 +11,9 @@ on:
1111

1212
# Required for GitHub Pages deployment
1313
permissions:
14-
contents: write # to push gh-pages for classic page
15-
pages: write # to deploy using actions/deploy-pages@v1
16-
id-token: write # to authenticate deployment
14+
contents: write
15+
pages: write
16+
id-token: write
1717

1818
jobs:
1919
build-docs:
@@ -33,9 +33,8 @@ jobs:
3333
doxygen -v
3434
doxygen Doxyfile
3535
36-
# Upload the generated site as an artifact for the deploy job
3736
- name: Upload Pages artifact
38-
uses: actions/upload-pages-artifact@v1
37+
uses: actions/upload-pages-artifact@v2
3938
with:
4039
path: docs/html
4140

@@ -46,4 +45,4 @@ jobs:
4645
steps:
4746
- name: Deploy
4847
id: deployment
49-
uses: actions/deploy-pages@v1
48+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)