-
Notifications
You must be signed in to change notification settings - Fork 16
79 lines (66 loc) · 2.59 KB
/
build_docker_dev.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: Build and Publish dev docker image
on:
push:
branches: [ master ]
env:
REGISTRY_IMAGE: ghcr.io/calaos/calaos_home
NAME: calaos_home
CALAOS_REL_URL: https://releases.calaos.fr/v4/image-dev
IMG_TAG: dev
jobs:
# define job to build and publish docker image
build-and-push-docker-image:
name: Build Docker image and push to repositories
# run only when code is compiling and tests are passing
runs-on: ubuntu-latest
# steps to perform in job
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Fetch latest release version
id: fetch-latest-release
uses: reloc8/[email protected]
- name: Increment dev release version
id: bump_version
uses: christian-draeger/[email protected]
with:
current-version: ${{ steps.fetch-latest-release.outputs.latest-release }}
version-fragment: 'alpha'
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY_IMAGE }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Github Packages
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push by digest
id: build
uses: docker/build-push-action@v4
with:
context: "{{defaultContext}}:docker"
push: true
build-args: APP_VERSION=${{ steps.bump_version.outputs.next-version }}
tags: |
${{ env.REGISTRY_IMAGE }}:${{ env.IMG_TAG }}
${{ env.REGISTRY_IMAGE }}:${{ steps.bump_version.outputs.next-version }}
- name: Create Tag
uses: negz/create-tag@v1
with:
version: ${{ steps.bump_version.outputs.next-version }}
token: ${{ secrets.ACTION_DISPATCH }}
- name: update calaos release
uses: fjogeleit/http-request-action@v1
with:
url: '${{ env.CALAOS_REL_URL }}/${{ env.NAME }}'
method: 'POST'
customHeaders: '{"Content-Type": "application/json"}'
bearerToken: ${{ secrets.CALAOS_REL_TOKEN }}
data: '{"name": "${{ env.NAME }}", "source": "${{ env.REGISTRY_IMAGE }}:${{ steps.bump_version.outputs.next-version }}", "version": "${{ steps.bump_version.outputs.next-version }}"}'