-
Notifications
You must be signed in to change notification settings - Fork 1
34 lines (34 loc) · 970 Bytes
/
release-workflow.yml
File metadata and controls
34 lines (34 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# SPDX-FileCopyrightText: 2025 Digg - Agency for Digital Government
#
# SPDX-License-Identifier: CC0-1.0
name: Release Workflow
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+-alpha*"
- "v[0-9]+.[0-9]+.[0-9]+-beta*"
- "v[0-9]+.[0-9]+.[0-9]+-rc*"
concurrency:
group: release-${{ github.ref }}
cancel-in-progress: false
permissions:
contents: read
jobs:
release:
uses: diggsweden/reusable-ci/.github/workflows/release-orchestrator.yml@659cc5dbdbedc47f1510817f38aba07de8a93ae8 # v2.6.1
permissions:
contents: write
packages: write
id-token: write
actions: read
security-events: write
attestations: write
secrets: inherit
with:
artifacts-config: .github/artifacts.yml
changelog-creator: git-cliff
release-publisher: github-cli
release.draft: false
# Skip version bump (no version files to update)
changelog.skipversionbump: true