-
Notifications
You must be signed in to change notification settings - Fork 65
74 lines (60 loc) · 2.53 KB
/
release.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
name: Release Godaddy Webhook Helm Chart
on:
workflow_dispatch:
inputs:
version:
description: 'The version you want to release (e.g 0.2.0).'
required: true
jobs:
release:
runs-on: ubuntu-latest
# if: contains(github.event.head_commit.message, '[to_release]')
permissions:
contents: write # for creating Releases .tgz (403 from chart-releaser-action if not set)
#pages: write # not required for chart-releaser-action
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Install Helm
uses: azure/setup-helm@v3
- name: Create release branch
run: git checkout -b release/${{ github.event.inputs.version }}
- name: Tag chart and image version
id: tag-chart
run: |
export TAG_VERSION=${{ github.event.inputs.version }}
echo "Tag version: ${TAG_VERSION}"
yq '.appVersion = env(TAG_VERSION)' -i ./deploy/charts/godaddy-webhook/Chart.yaml
yq '.image.tag = env(TAG_VERSION)' -i ./deploy/charts/godaddy-webhook/values.yaml
git add ./deploy/charts/godaddy-webhook/Chart.yaml
git add ./deploy/charts/godaddy-webhook/values.yaml
git commit -asm "Update Helm chart version to $TAG_VERSION"
git push origin release/${TAG_VERSION}
git tag v${TAG_VERSION}
git push origin v${TAG_VERSION}
echo "TAG_VERSION=${TAG_VERSION}" >> "${GITHUB_OUTPUT}"
- name: Login to Quay.io Hub
uses: docker/login-action@v1
with:
registry: quay.io
username: ${{ secrets.QUAY_ROBOT_USER }}
password: ${{ secrets.QUAY_ROBOT_TOKEN }}
- name: Build the container image
run: |
NEW_VERSION="${{ steps.tag-chart.outputs.TAG_VERSION }}"
docker build -t cert-manager-webhook-godaddy:${NEW_VERSION} -f Dockerfile .
TAG_ID=$(docker images -q cert-manager-webhook-godaddy:${NEW_VERSION})
docker tag ${TAG_ID} quay.io/snowdrop/cert-manager-webhook-godaddy:${NEW_VERSION}
docker push quay.io/snowdrop/cert-manager-webhook-godaddy:${NEW_VERSION}
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.5.0
with:
charts_dir: deploy/charts
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"