Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove github pages deployment #175

Merged
merged 2 commits into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 0 additions & 47 deletions .github/workflows/main_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,53 +20,6 @@ permissions:
packages: write # to push to GHCR package

jobs:
# Build & upload artifact for pages
build_pages:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: latest
cache: npm
- name: Install and build
run: |
npm ci
CI=false npm run build
env:
VITE_SIDENAV: ${{ secrets.VITE_SIDENAV }}
VITE_ENABLED_PREZS: ${{ secrets.VITE_ENABLED_PREZS }}
VITE_API_BASE_URL: ${{ secrets.VITE_API_BASE_URL }}
VITE_MAP_SEARCH_PROPS_FC_LABEL: ${{ secrets.VITE_MAP_SEARCH_PROPS_FC_LABEL }}
VITE_MAP_SEARCH_PROPS_DS_LABEL: ${{ secrets.VITE_MAP_SEARCH_PROPS_DS_LABEL }}
GH_PAGES_DEMO: true
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
# Upload build directory
path: "dist"

# Deploy to github pages
deploy_pages:
# Add a dependency to the build job
needs: build_pages

# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

# Specify runner + deployment step
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1

# build & push Docker image
docker:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Prez UI is the front end of [Prez](https://github.com/RDFLib/prez) - a linked da

Prez UI is a [Vue.js](https://vuejs.org/) single page application (SPA) that uses [N3.js](https://github.com/rdfjs/N3.js) to process RDF data from the Prez API.

See the Prez UI demo website - https://rdflib.dev/prez-ui/
See the Prez UI demo website - https://demo.dev.kurrawong.ai

## Environment Variables

Expand Down
Loading