Skip to content

Commit

Permalink
modified build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
saurabh-s-sawant committed Aug 20, 2024
1 parent 6803d65 commit dfbdd43
Showing 1 changed file with 3 additions and 21 deletions.
24 changes: 3 additions & 21 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,37 +28,19 @@ jobs:
cd Docs
make clean
make html
touch Docs/build/html/.nojekyll
- name: List modified files
run: |
cd Docs/build/html
git status
- name: Add modified files to Git
run: |
git config user.name "GitHub Actions"
git config user.email "[email protected]"
git add Docs/build/html
- name: Commit changes
run: git commit -m "Auto-update documentation"

- name: Push changes
run: git push origin development

deploy:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: deploy
if: github.event_name == 'push' && github.ref == 'refs/heads/development'
uses: JamesIves/github-pages-deploy-action@v4
with:
repository-name: AMReX-Microelectronics/AMReX-Microelectronics.github.io
branch: gh-pages
folder: Docs/build/html
folder: {{runner.workspace}}/Docs/build/html
clean: true
commit-message: "Force update - $(date +'%Y-%m-%d %H:%M:%S')"

0 comments on commit dfbdd43

Please sign in to comment.