|
1 | 1 | # SPDX-License-Identifier: Apache-2.0
|
2 | 2 | # Copyright 2024 Intel Corporation
|
3 |
| -name: GitHub release |
| 3 | +# Copyright 2025 Canonical Ltd. |
4 | 4 |
|
5 | 5 | on:
|
6 | 6 | push:
|
|
10 | 10 | - v*
|
11 | 11 |
|
12 | 12 | jobs:
|
13 |
| - # CAUTION: Other actions depend on this name "tag-github" |
14 | 13 | tag-github:
|
15 |
| - runs-on: ubuntu-latest |
16 |
| - if: github.repository_owner == 'omec-project' |
17 |
| - outputs: |
18 |
| - changed: ${{ steps.version-change.outputs.changed }} |
19 |
| - version: ${{ steps.version-change.outputs.version }} |
20 |
| - release_branch: ${{ steps.version-change.outputs.release_branch }} |
21 |
| - version_branch: ${{ steps.version-change.outputs.version_branch }} |
22 |
| - steps: |
23 |
| - - uses: actions/checkout@v4 |
24 |
| - with: |
25 |
| - fetch-depth: 0 |
26 |
| - |
27 |
| - - name: Get changes |
28 |
| - id: version-file |
29 |
| - run: | |
30 |
| - if git diff --name-only ${{ github.event.before }} ${{ github.event.after }} | grep VERSION; then |
31 |
| - echo "changed=true" >> $GITHUB_OUTPUT |
32 |
| - version_before=$(git show ${{ github.event.before }}:VERSION) |
33 |
| - echo "version_before=$version_before" >> $GITHUB_OUTPUT |
34 |
| - else |
35 |
| - echo "VERSION file was not changed" |
36 |
| - fi |
37 |
| -
|
38 |
| - - name: Validate change in version file |
39 |
| - id: version-change |
40 |
| - if: steps.version-file.outputs.changed == 'true' |
41 |
| - run: | |
42 |
| - version=$(cat VERSION) |
43 |
| - version_before_full=${{ steps.version-file.outputs.version_before }} |
44 |
| - version_before=${version_before_full::-4} |
45 |
| - echo "version=$version" |
46 |
| - echo "version_before=$version_before" |
47 |
| - validate="^[0-9]+\.[0-9]+\.[0-9]+$" |
48 |
| - if [[ $version =~ $validate ]]; then |
49 |
| - echo "changed=true" >> $GITHUB_OUTPUT |
50 |
| - echo "version=$version" >> $GITHUB_OUTPUT |
51 |
| - else |
52 |
| - echo "Version change not for release" |
53 |
| - fi |
54 |
| - if [[ $version_before =~ $validate ]]; then |
55 |
| - IFS='.' read -r major minor patch <<< "$version" |
56 |
| - IFS='.' read -r major_b minor_b patch_b <<< "$version_before" |
57 |
| - if [[ "$major" -ne "$major_b" ]] || [[ "$minor" -ne "$minor_b" ]]; then |
58 |
| - version_branch="$major_b.$minor_b" |
59 |
| - echo "release_branch=true" >> $GITHUB_OUTPUT |
60 |
| - echo "version_branch=$version_branch" >> $GITHUB_OUTPUT |
61 |
| - fi |
62 |
| - else |
63 |
| - echo "Version change not for branch release" |
64 |
| - fi |
65 |
| -
|
66 |
| - - name: Create release using REST API |
67 |
| - if: steps.version-change.outputs.changed == 'true' |
68 |
| - run: | |
69 |
| - curl -L \ |
70 |
| - -X POST \ |
71 |
| - -H "Accept: application/vnd.github+json" \ |
72 |
| - -H "Authorization: Bearer ${{ secrets.GH_OMEC_PAT }}" \ |
73 |
| - -H "X-GitHub-Api-Version: 2022-11-28" \ |
74 |
| - https://api.github.com/repos/${{ github.repository }}/releases \ |
75 |
| - -d '{ |
76 |
| - "tag_name": "v${{ steps.version-change.outputs.version }}", |
77 |
| - "target_commitish": "${{ github.event.repository.default_branch }}", |
78 |
| - "name": "v${{ steps.version-change.outputs.version }}", |
79 |
| - "draft": false, |
80 |
| - "prerelease": false, |
81 |
| - "generate_release_notes": true |
82 |
| - }' |
| 14 | + uses: omec-project/.github/.github/workflows/tag-github.yml@main |
83 | 15 |
|
84 | 16 | update-version:
|
85 |
| - runs-on: ubuntu-latest |
86 | 17 | needs: tag-github
|
87 |
| - if: needs.tag-github.outputs.changed == 'true' |
88 |
| - steps: |
89 |
| - - uses: actions/checkout@v4 |
90 |
| - |
91 |
| - - name: Increment version |
92 |
| - run: | |
93 |
| - version=${{ needs.tag-github.outputs.version }} |
94 |
| - IFS='.' read -r major minor patch <<< "$version" |
95 |
| - patch_update=$((patch+1)) |
96 |
| - NEW_VERSION="$major.$minor.$patch_update-dev" |
97 |
| - echo $NEW_VERSION > VERSION |
98 |
| - echo "Updated version: $NEW_VERSION" |
99 |
| -
|
100 |
| - - name: Create Pull Request |
101 |
| - uses: peter-evans/create-pull-request@v7 |
102 |
| - with: |
103 |
| - token: ${{ secrets.GH_OMEC_PAT }} |
104 |
| - commit-message: Update version |
105 |
| - committer: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> |
106 |
| - author: ${{ github.actor }} <${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com> |
107 |
| - signoff: true |
108 |
| - branch: version-update |
109 |
| - delete-branch: true |
110 |
| - title: Update version |
111 |
| - body: | |
112 |
| - Update VERSION file |
113 |
| - add-paths: | |
114 |
| - VERSION |
| 18 | + uses: omec-project/.github/.github/workflows/update-version.yml@main |
| 19 | + secrets: inherit |
115 | 20 |
|
116 | 21 | branch-release:
|
117 |
| - runs-on: ubuntu-latest |
118 | 22 | needs: tag-github
|
119 |
| - if: (needs.tag-github.outputs.changed == 'true') && (needs.tag-github.outputs.release_branch == 'true') |
120 |
| - env: |
121 |
| - GITHUB_TOKEN: ${{ secrets.GH_OMEC_PAT }} |
122 |
| - steps: |
123 |
| - - uses: actions/checkout@v4 |
124 |
| - |
125 |
| - - uses: peterjgrainger/[email protected] |
126 |
| - with: |
127 |
| - branch: "rel-${{ needs.tag-github.outputs.version_branch }}" |
128 |
| - sha: '${{ github.event.pull_request.head.sha }}' |
| 23 | + uses: omec-project/.github/.github/workflows/branch-release.yml@main |
| 24 | + secrets: inherit |
0 commit comments