-
Notifications
You must be signed in to change notification settings - Fork 1
80 lines (67 loc) · 1.96 KB
/
publish-new-build.yml
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
name: Publish new build
run-name: "Publish new images for ${{ github.ref_name }} triggered by ${{ github.actor }}; version: ${{ inputs.version || 'N/A'}}"
on:
pull_request:
types: [opened, synchronize]
push:
branches:
- main
workflow_dispatch:
inputs:
version:
description: 'Enter the version number'
required: true
default: 'latest'
jobs:
code-check:
uses: ./.github/workflows/code-check.yml
secrets: inherit
bump-version:
runs-on: ubuntu-latest
needs: code-check
if: ${{ github.ref_name == 'main' && inputs.version != '' }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install cargo-edit
run: cargo install cargo-edit
- name: Update version
run: cargo set-version ${{ inputs.version }}
- name: Run cargo check
run: cargo check
- name: Git config
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: Commit version change
run: |
git commit -am "Update version to ${{ inputs.version }}"
git push origin main
build-and-publish:
needs:
- code-check
- bump-version
if: |
always() &&
!contains(needs.*.result, 'failure') &&
!contains(needs.*.result, 'cancelled')
uses: ./.github/workflows/build-docker-image.yml
with:
version: ${{ inputs.version }}
secrets: inherit
git-tag:
runs-on: ubuntu-latest
needs: build-and-publish
if: |
${{ github.ref_name == 'main' && inputs.version != '' }} &&
always() &&
!contains(needs.*.result, 'failure') &&
!contains(needs.*.result, 'cancelled')
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Create and push tag
run: |
TAG_NAME="v${{ inputs.version }}"
git tag $TAG_NAME
git push origin $TAG_NAME