-
Notifications
You must be signed in to change notification settings - Fork 1
60 lines (51 loc) · 1.45 KB
/
InfluxDB.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
name: InfluxDB
env:
wdir: influxdb
arch: arm64
imgname: torizon-os-build-status-influxdb
on:
push:
paths:
- 'influxdb/**'
release:
types: [created]
jobs:
build-influxdb:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ env.wdir }}
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Build and push release candidate
uses: ./.github/actions/docker-build-push
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
context: ${{ env.wdir }}
imgarch: ${{ env.arch }}
tagname: ${{ env.imgname }}
tagversion: rc
release-influxdb:
needs: [build-influxdb]
if: github.event_name == 'release'
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ env.wdir }}
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Get container tag
run: |
echo "CONTAINER_TAG=$(jq -r '.docker_tag' .vscode/settings.json)" >> $GITHUB_ENV
- name: Build and push tagged release
uses: ./.github/actions/docker-build-push
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
context: ${{ env.wdir }}
imgarch: ${{ env.arch }}
tagname: ${{ env.imgname }}
tagversion: ${{ env.CONTAINER_TAG }}