forked from devgateway/dg-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
108 lines (95 loc) · 3.31 KB
/
pre-release.yml
File metadata and controls
108 lines (95 loc) · 3.31 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
name: Generate a Pre-Release
on:
workflow_dispatch:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
packages: write
jobs:
prepare-a-release:
runs-on: ubuntu-latest
outputs:
new_version: ${{ steps.tag_version.outputs.new_version }}
new_tag: ${{ steps.tag_version.outputs.new_tag }}
current_date: ${{ steps.current_date.outputs.current_date }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: Get Current Date And Time
id: current_date
run: echo "current_date=$(date +'%Y%m%d')" >> $GITHUB_OUTPUT
- name: Generate Tag
id: tag_version
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
tag_prefix: 'v'
release_branches: 'production,release/*'
pre_release_branches: 'main'
append_to_pre_release_tag: 'rc'
dry_run: 'true'
build-and-push-docker-image:
needs: prepare-a-release
runs-on: ubuntu-latest
outputs:
new_version: ${{ needs.prepare-a-release.outputs.new_version }}
new_tag: ${{ needs.prepare-a-release.outputs.new_tag }}
current_date: ${{ needs.prepare-a-release.outputs.current_date }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: linux/amd64,linux/arm64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Registry
uses: docker/login-action@v3
with:
registry: ${{ vars.DOCKER_REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
cache-from: type=registry,ref=${{ vars.DOCKER_REGISTRY }}/devgateway/data-viz/admin:buildcache
cache-to: type=registry,ref=${{ vars.DOCKER_REGISTRY }}/devgateway/data-viz/admin:buildcache,mode=max
context: .
push: true
build-args: |
VERSION=${{ needs.prepare-a-release.outputs.new_version }}
TAG=${{ needs.prepare-a-release.outputs.new_tag }}
GIT_BRANCH=${{ needs.prepare-a-release.outputs.new_tag }}
tags: |
${{ vars.DOCKER_REGISTRY }}/devgateway/data-viz/admin:dev
${{ vars.DOCKER_REGISTRY }}/devgateway/data-viz/admin:v${{ needs.prepare-a-release.outputs.new_version }}
release-on-github:
needs: build-and-push-docker-image
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'corretto'
cache: 'maven'
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ needs.build-and-push-docker-image.outputs.new_tag }}
generate_release_notes: true
draft: false
prerelease: true
make_latest: 'true'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}