Skip to content

Commit

Permalink
Revert "objectionary#66 - removed gh-pages checks"
Browse files Browse the repository at this point in the history
This reverts commit 3e5f226.
  • Loading branch information
Graur committed Oct 26, 2022
1 parent 3e5f226 commit 25f9d4e
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: github pages
on:
push:
branches:
- master
paths-ignore: ['paper/**', 'README.md', 'LICENSE.txt']
pull_request:
branches:
- master
paths-ignore: ['paper/**', 'README.md', 'LICENSE.txt']
jobs:
make:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
- run: mvn clean install
- run: mkdir gh-pages
- run: cp -r target/eo-after/. gh-pages
- uses: JamesIves/github-pages-deploy-action@v4.4.1
with:
branch: gh-pages
folder: gh-pages

0 comments on commit 25f9d4e

Please sign in to comment.