generated from interTwin-eu/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'interTwin-eu:main' into otel_interlink
- Loading branch information
Showing
33 changed files
with
741 additions
and
928 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Update Docusaurus | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
tags-ignore: | ||
- "*" | ||
workflow_call: | ||
|
||
jobs: | ||
update-doc: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Remove existing openapi.json | ||
run: rm ./docs/openapi/openapi.json | ||
|
||
- name: Download openapi.json | ||
uses: robinraju/release-downloader@v1 | ||
with: | ||
latest: true | ||
preRelease: false | ||
fileName: 'openAPISpec' | ||
out-file-path: 'docs/openapi' | ||
|
||
- name: Rename openAPISpec to openapi.json | ||
run: mv ./docs/openapi/openAPISpec ./docs/openapi/openapi.json | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '22' # Ensure this matches the Node.js version required by Docusaurus | ||
|
||
- name: Install dependencies | ||
working-directory: ./docs # Change to the directory where package.json is located | ||
run: npm install | ||
|
||
- name: Build Docusaurus site | ||
working-directory: ./docs # Change to the directory where package.json is located | ||
run: npm run build | ||
|
||
- name: Deploy to GitHub Pages | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./docs/build # Ensure this matches the build output directory of Docusaurus# |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Update OpenAPI | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
update-openapi: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.x' # specify the Python version you need | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r example/requirements.txt # if you have a requirements file | ||
- name: Run script to generate OpenAPI JSON | ||
run: python example/create_openapi.py | ||
|
||
- name: Upload json to release | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: ./docs/openapi/openapi.json | ||
asset_name: openAPISpec | ||
tag: ${{ github.ref }} | ||
overwrite: true | ||
body: "OpenAPI spec for plugin REST" | ||
|
||
Trigger-Docusaurus-Update: | ||
uses: ./.github/workflows/build_docusaurus.yaml |
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
{ | ||
"name": "interlink", | ||
"sdk": "go", | ||
"dependencies": [ | ||
{ | ||
"name": "k3s", | ||
"source": "github.com/marcosnils/daggerverse/k3s@e0bd6b9f5519c49db4b6eb0689927214720976f9" | ||
} | ||
], | ||
"source": ".", | ||
"engineVersion": "v0.11.9" | ||
} |
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
Oops, something went wrong.