Skip to content

Deploy

Deploy #591

Workflow file for this run

name: Deploy
on:
workflow_run:
workflows: ["Validate RDF"]
branches:
- master
types:
- completed
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '8'
- run: ./infer.sh
- run: npm install
- name: Deploy with gh-pages
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
npm run deploy -- -u "github-actions-bot <[email protected]>"
env:
GITHUB_TOKEN: ${{ secrets.CUSTOM_GITHUB_TOKEN }}