Advertisement
AnthonyCagliano

Untitled

Aug 31st, 2021
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. # This is a basic workflow to help you get started with Actions
  2.  
  3. name: Hashlib
  4.  
  5. # Controls when the workflow will run
  6. on:
  7. push:
  8. branches:
  9. - stable
  10.  
  11. # Allows you to run this workflow manually from the Actions tab
  12. workflow_dispatch:
  13.  
  14. # A workflow run is made up of one or more jobs that can run sequentially or in parallel
  15. jobs:
  16. # This workflow contains a single job called "build"
  17. build:
  18. # The type of runner that the job will run on
  19. runs-on: ubuntu-latest
  20.  
  21. # Steps represent a sequence of tasks that will be executed as part of the job
  22. steps:
  23. # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
  24. - uses: actions/checkout@v2
  25.  
  26. # Runs a single command using the runners shell
  27. - name: Doxygen
  28. uses: mattnotmitt/doxygen-action@v1
  29. with:
  30. working-directory: '.'
  31. doxyfile-path: '.doxyfile'
  32.  
  33. - name: Upload Website Documentation
  34. if: github.ref == 'refs/heads/stable'
  35. uses: JamesIves/github-pages-deploy-action@3.7.1
  36. with:
  37. GITHUB_TOKEN: $GH_REPO_TOKEN
  38. BRANCH: gh-pages
  39. FOLDER: /
  40. CLEAN: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement