Update dependency org.yaml:snakeyaml to v2 #195
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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@v4 | |
- 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/[email protected] | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
branch: gh-pages | |
folder: gh-pages |