Skip to content

Merge branch 'acl-allow' of lkiesow/opencast-admin-interface into main #40

Merge branch 'acl-allow' of lkiesow/opencast-admin-interface into main

Merge branch 'acl-allow' of lkiesow/opencast-admin-interface into main #40

Workflow file for this run

name: Publish Test Page
on:
push:
branches:
- main
jobs:
build:
if: github.repository_owner == 'opencast'
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
- name: get node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: download dependencies
run: npm ci
- name: build project
run: npm run build
- name: create pages directory
run: mkdir gh-pages
- name: include admin interface
run: mv build gh-pages/admin-ui
- name: include mock data
working-directory: ./gh-pages
run: cp -rv ../test/GET/* .
- name: include landing page
run: cp .github/demo-page.html gh-pages/index.html
- name: upload test page artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./gh-pages
deploy:
if: github.repository_owner == 'opencast'
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4