Skip to content

Commit

Permalink
Setup basic deployment logic
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminaaron committed Oct 29, 2024
1 parent d79549b commit 51409f2
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 2 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Prepare gh-pages branch

on:
push:
branches:
- main
repository_dispatch:
types: [ external-console-deployment-trigger ]

jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
force_orphan: true
allow_empty_commit: true
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.idea/
node_modules/
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# console
A console for working directly with all triples
# FörderFunke Console
Playground and discovery tool for all Linked Data in the FörderFunke project.
12 changes: 12 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "foerderfunke-console",
"version": "0.0.1",
"description": "Playground and discovery tool for all Linked Data in the FörderFunke project",
"dependencies": {}
}
File renamed without changes.

0 comments on commit 51409f2

Please sign in to comment.