-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (30 loc) · 966 Bytes
/
Copy pathrelease.yml
File metadata and controls
36 lines (30 loc) · 966 Bytes
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
name: Release
on:
workflow_dispatch:
push:
branches: ["master"]
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Get semantic version
id: get_version
uses: ./.github/actions/get-semantic-version
with:
gpat_token: ${{ secrets.GPAT_TOKEN }}
- name: Update version of app
uses: ./.github/actions/update-version
with:
version: ${{ env.VERSION }}
gpat_token: ${{ secrets.GPAT_TOKEN }}
helm_url: ${{ secrets.HELM_URL }}
- name: Push Docker image
uses: ./.github/actions/push-docker-image
with:
version: ${{ env.VERSION }}
gpat_token: ${{ secrets.GPAT_TOKEN }}
dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }}
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }}
dockerhub_repo: ${{ secrets.DOCKERHUB_REPO }}