Skip to content
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
12 changes: 8 additions & 4 deletions .github/actions/doc-generate/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,20 @@ runs:
shell: bash
working-directory: ${{ inputs.edgehog }}
run: |
./tools/gen-docs-versions.sh > ${{ github.workspace }}/${{ inputs.docs }}/versions.js
./tools/gen-docs-versions.sh > versions.js
- name: Move doc to docs folder
shell: bash
run: |
cp -r "${{ inputs.edgehog }}/backend/doc" "${{ github.workspace }}/${{ inputs.docs }}/${{ inputs.version }}"
cp -r "${{ inputs.edgehog }}/backend/doc" "${{ inputs.docs }}/${{ inputs.version }}"
- name: Move version to docs folder
shell: bash
run: |
cp -r "${{ inputs.edgehog }}/versions.js" "${{ inputs.docs }}/versions.js"
- name: link `versions.js`
shell: bash
working-directory: ${{ inputs.docs }}/${{ inputs.version }}
working-directory: ${{ inputs.docs }}
run: |
ln -s ../versions.js docs_config.js
ln -s versions.js ${{ inputs.version }}/docs_config.js
- uses: actions/upload-artifact@v7
with:
name: edgehog-docs-bundle
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/frontend-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# SPDX-License-Identifier: Apache-2.0
#

name: Build and Test Frontend
name: Frontend CI

on:
# Run when pushing to stable branches
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
manifest-file: .github/release-please/manifest.json
publish-docs:
needs: [make-release]
uses: .github/workflows/docs-workflow.yaml
uses: ./.github/workflows/docs-ci.yaml
with:
release-made: ${{ needs.make-release.outputs.backend--release_created }}
release-version: ${{ needs.make-release.outputs.backend--version }}
Expand Down
21 changes: 18 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,26 @@
<!---
Copyright 2021,2022 SECO Mind Srl
<!--
This file is part of Edgehog.

SPDX-License-Identifier: Apache-2.0
Copyright 2021, 2022, 2026 SECO Mind Srl

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

SPDX-License-Identifier: Apache-2.0
-->

![Backend CI](https://github.com/edgehog-device-manager/edgehog/actions/workflows/backend-ci.yaml/badge.svg)
![Frontend CI](https://github.com/edgehog-device-manager/edgehog/actions/workflows/frontend-ci.yaml/badge.svg)
![Coverage](https://img.shields.io/coverallsCoverage/github/edgehog-device-manager/edgehog)

# Edgehog

Expand Down
Loading