-
-
Notifications
You must be signed in to change notification settings - Fork 3k
82 lines (71 loc) Β· 3.14 KB
/
Copy pathrelease-hugoblox-modules.yml
File metadata and controls
82 lines (71 loc) Β· 3.14 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: Release - HugoBlox Modules
run-name: ${{ github.workflow }} - ${{ github.ref_name }}
on:
workflow_dispatch:
inputs:
dry_run:
description: "Run without committing/tagging"
type: boolean
default: true
propagate:
description: "Propagate dependency bumps to dependents"
type: boolean
default: true
update_templates_to_commits:
description: "Update templates to use latest module commits instead of tagged versions"
type: boolean
default: false
permissions:
contents: write
concurrency:
group: release-modules
cancel-in-progress: false
jobs:
release:
runs-on: ubuntu-latest
env:
LOG_LEVEL: INFO
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.8.3
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install dependencies
run: |
poetry --version
poetry install --no-interaction --no-ansi
- name: Configure Git identity
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
# Skip plan display when updating templates to commits as it's not relevant for that operation
- name: Show plan (dry run)
if: ${{ inputs.dry_run && !inputs.update_templates_to_commits }}
run: |
poetry run python scripts/release_modules.py --print-plan --log-level $LOG_LEVEL
# Dedicated step for updating templates to use latest commits instead of tagged versions
# Only runs when specifically requested and not in dry run mode
- name: Update templates to commits
if: ${{ inputs.update_templates_to_commits && !inputs.dry_run }}
run: |
poetry run python scripts/release_modules.py --yes --update-starters-to-commits --log-level $LOG_LEVEL
# Standard release process - only runs when not in dry run mode and not updating templates to commits
# These operations are mutually exclusive - we either do a normal release or update starters to commits
- name: Release (commit, tag, push)
if: ${{ !inputs.dry_run && !inputs.update_templates_to_commits }}
run: |
if [ "${{ inputs.propagate }}" = "true" ]; then
poetry run python scripts/release_modules.py --yes --propagate --log-level $LOG_LEVEL
else
poetry run python scripts/release_modules.py --yes --no-propagate --log-level $LOG_LEVEL
fi