add vocab entry "Portal Globales Lernen" #701
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: Build /public and delpoy to gh-pages with docker container | |
env: | |
docker_repository: "docker.edu-sharing.com" | |
on: | |
push: | |
branches: | |
- main | |
- master | |
- gh-pages | |
workflow_dispatch: | |
inputs: | |
logLevel: | |
description: 'Log level' | |
required: true | |
default: 'warning' | |
tags: | |
description: 'Test scenario tags' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v2 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly. | |
with: | |
persist-credentials: false | |
- name: remove public and data-dir if already exists | |
run: rm -rf public data | |
- run: mkdir public | |
- run: chmod -R 777 public # user in container is node which won't have write access to public | |
- run: mkdir data | |
- run: chmod -R 777 data # user in container is node which won't have write access to public | |
- run: git clone https://github.com/openeduhub/oeh-metadata-vocabs.git data/ # <-- add link to your repo here | |
- name: make .env file | |
run: echo "BASEURL=" > .env | |
- name: login to edu-sharing container registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ env.docker_repository }} | |
username: ${{ secrets.DOCKER_EDU_HUB_REGISTRY_USERNAME }} | |
password: ${{ secrets.DOCKER_EDU_HUB_REGISTRY_PASSWORD }} | |
- name: build public dir with docker image | |
run: > | |
docker run | |
-v $(pwd)/public:/app/public | |
-v $(pwd)/data:/app/data | |
-v $(pwd)/.env:/app/.env | |
-v $(pwd)/.skohub/static/img:/app/static/img | |
-v $(pwd)/.skohub/config.yaml:/app/config.yaml | |
-e GATSBY_RESPOSITORY_URL=https://github.com/skohub-io/skohub-docker-vocabs.git | |
docker.edu-sharing.com/projects/wlo/edu_sharing-projects-wlo-skohub-vocabs:main | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./public | |
publish_branch: gh-pages | |
cname: vocabs.openeduhub.de |