|
1 | 1 | ---
|
2 | 2 | name: Release
|
3 |
| - |
4 | 3 | on:
|
5 | 4 | workflow_dispatch:
|
6 | 5 | pull_request_target:
|
7 | 6 | types: [closed]
|
8 | 7 | branches: [main]
|
9 |
| - |
10 | 8 | permissions:
|
11 | 9 | contents: read
|
12 |
| - |
13 | 10 | jobs:
|
14 |
| - create_release: |
15 |
| - # release if |
16 |
| - # manual deployment OR |
17 |
| - # merged to main and labelled with release labels |
18 |
| - if: | |
19 |
| - (github.event_name == 'workflow_dispatch') || |
20 |
| - (github.event.pull_request.merged == true && |
21 |
| - (contains(github.event.pull_request.labels.*.name, 'breaking') || |
22 |
| - contains(github.event.pull_request.labels.*.name, 'feature') || |
23 |
| - contains(github.event.pull_request.labels.*.name, 'vuln') || |
24 |
| - contains(github.event.pull_request.labels.*.name, 'release'))) |
25 |
| - outputs: |
26 |
| - full-tag: ${{ steps.release-drafter.outputs.tag_name }} |
27 |
| - short-tag: ${{ steps.get_tag_name.outputs.SHORT_TAG }} |
28 |
| - body: ${{ steps.release-drafter.outputs.body }} |
29 |
| - runs-on: ubuntu-latest |
| 11 | + release: |
30 | 12 | permissions:
|
31 | 13 | contents: write
|
32 | 14 | pull-requests: read
|
33 |
| - steps: |
34 |
| - - uses: release-drafter/release-drafter@3f0f87098bd6b5c5b9a36d49c41d998ea58f9348 |
35 |
| - id: release-drafter |
36 |
| - env: |
37 |
| - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
38 |
| - with: |
39 |
| - config-name: release-drafter.yml |
40 |
| - publish: true |
41 |
| - - name: Get the short tag |
42 |
| - id: get_tag_name |
43 |
| - run: | |
44 |
| - short_tag=$(echo ${{ steps.release-drafter.outputs.tag_name }} | cut -d. -f1) |
45 |
| - echo "SHORT_TAG=$short_tag" >> "$GITHUB_OUTPUT" |
46 |
| - create_action_images: |
47 |
| - needs: create_release |
48 |
| - runs-on: ubuntu-latest |
| 15 | + uses: jmeridth/reusable-workflows/.github/workflows/release.yaml@53a9c808122ffaae9af948f72139fb4bd44ab74c |
| 16 | + with: |
| 17 | + publish: true |
| 18 | + release-config-name: release-drafter.yml |
| 19 | + secrets: |
| 20 | + github-token: ${{ secrets.GITHUB_TOKEN }} |
| 21 | + release_image: |
| 22 | + needs: release |
49 | 23 | permissions:
|
| 24 | + contents: write |
| 25 | + discussions: write |
50 | 26 | packages: write
|
51 |
| - env: |
52 |
| - REGISTRY: ghcr.io |
53 |
| - IMAGE_NAME: ${{ github.repository }} |
54 |
| - steps: |
55 |
| - - name: Set up QEMU |
56 |
| - uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf |
57 |
| - - name: Set up Docker Buildx |
58 |
| - uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 |
59 |
| - - name: Log in to the Container registry |
60 |
| - uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 |
61 |
| - with: |
62 |
| - registry: ${{ env.REGISTRY }} |
63 |
| - username: ${{ github.actor }} |
64 |
| - password: ${{ secrets.GITHUB_TOKEN }} |
65 |
| - |
66 |
| - - name: Push Docker Image |
67 |
| - if: ${{ success() }} |
68 |
| - uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 |
69 |
| - with: |
70 |
| - context: . |
71 |
| - file: ./Dockerfile |
72 |
| - push: true |
73 |
| - tags: | |
74 |
| - ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest |
75 |
| - ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ needs.create_release.outputs.full-tag }} |
76 |
| - ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ needs.create_release.outputs.short-tag }} |
77 |
| - platforms: linux/amd64,linux/arm64 |
78 |
| - provenance: false |
79 |
| - sbom: false |
80 |
| - create_discussion: |
81 |
| - needs: create_release |
82 |
| - runs-on: ubuntu-latest |
| 27 | + pull-requests: read |
| 28 | + uses: jmeridth/reusable-workflows/.github/workflows/release-image.yaml@53a9c808122ffaae9af948f72139fb4bd44ab74c |
| 29 | + with: |
| 30 | + image-name: ${{ github.repository }} |
| 31 | + full-tag: ${{ needs.release.outputs.full-tag }} |
| 32 | + short-tag: ${{ needs.release.outputs.short-tag }} |
| 33 | + secrets: |
| 34 | + github-token: ${{ secrets.GITHUB_TOKEN }} |
| 35 | + image-registry: ghcr.io |
| 36 | + image-registry-username: ${{ github.actor }} |
| 37 | + image-registry-password: ${{ secrets.GITHUB_TOKEN }} |
| 38 | + release_discussion: |
| 39 | + needs: release |
83 | 40 | permissions:
|
| 41 | + contents: read |
84 | 42 | discussions: write
|
85 |
| - steps: |
86 |
| - - name: Create an announcement discussion for release |
87 |
| - uses: abirismyname/create-discussion@6e6ef67e5eeb042343ef8b3d8d0f5d545cbdf024 |
88 |
| - env: |
89 |
| - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
90 |
| - with: |
91 |
| - title: ${{ needs.create_release.outputs.full-tag }} |
92 |
| - body: ${{ needs.create_release.outputs.body }} |
93 |
| - repository-id: ${{ secrets.RELEASE_DISCUSSION_REPOSITORY_ID }} |
94 |
| - category-id: ${{ secrets.RELEASE_DISCUSSION_CATEGORY_ID }} |
| 43 | + uses: jmeridth/reusable-workflows/.github/workflows/release-discussion.yaml@53a9c808122ffaae9af948f72139fb4bd44ab74c |
| 44 | + with: |
| 45 | + full-tag: ${{ needs.release.outputs.full-tag }} |
| 46 | + body: ${{ needs.release.outputs.body }} |
| 47 | + secrets: |
| 48 | + github-token: ${{ secrets.GITHUB_TOKEN }} |
| 49 | + discussion-repository-id: ${{ secrets.RELEASE_DISCUSSION_REPOSITORY_ID }} |
| 50 | + discussion-category-id: ${{ secrets.RELEASE_DISCUSSION_CATEGORY_ID }} |
0 commit comments