Skip to content

ci(deps): update github actions (non-major) #94

ci(deps): update github actions (non-major)

ci(deps): update github actions (non-major) #94

Workflow file for this run

# This file is part of Edgehog.
#
# Copyright 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
on:
push:
branches:
- main
- "release-*"
name: Release CI
jobs:
make-release:
runs-on: ubuntu-latest
outputs:
backend--release_created: ${{ steps.release.outputs.backend--release_created }}
backend--version: ${{ steps.release.outputs.backend--version }}
steps:
- uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3
id: app-token
with:
app-id: ${{ vars.EDGEHOG_APP_APP_ID }}
private-key: ${{ secrets.EDGEHOG_APP_PRIVATE_KEY }}
- uses: googleapis/release-please-action@5c625bfb5d1ff62eadeeb3772007f7f66fdcf071 # v4
id: release
with:
token: ${{ steps.app-token.outputs.token }}
config-file: .github/release-please/config.json
manifest-file: .github/release-please/manifest.json
publish-docs:
needs: [make-release]
uses: ./.github/workflows/docs-ci.yaml
with:
release-made: ${{ needs.make-release.outputs.backend--release_created }}
release-version: ${{ needs.make-release.outputs.backend--version }}
publish: ${{ github.repository_owner == 'edgehog-device-manager' }}