-
Notifications
You must be signed in to change notification settings - Fork 17
77 lines (65 loc) · 1.77 KB
/
release-build.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
---
name: release
on:
create:
tags:
- '**'
env:
DOCKER_REPO: litmuschaos
DOCKER_IMAGE: ansible-runner
defaults:
run:
shell: bash
jobs:
release-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set Tag
run: |
TAG="${GITHUB_REF#refs/*/}"
echo "TAG=${TAG}" >> $GITHUB_ENV
echo "RELEASE_TAG=${TAG}" >> $GITHUB_ENV
- name: Print Tag info
run: |
echo "RELEASE TAG: ${RELEASE_TAG}"
echo "${RELEASE_TAG}" > ${{ github.workspace }}/tag.txt
- name: Build Image
env:
DOCKER_TAG: ${RELEASE_TAG}
SAVE_PATH: ${{ github.workspace }}
run: |
make build
make save
chmod +x ${{ github.workspace }}/image.tar
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: myimage
path: |
${{ github.workspace }}/image.tar
${{ github.workspace }}/tag.txt
release-push:
runs-on: ubuntu-latest
needs: [release-build]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: myimage
path: ${{ github.workspace }}
- name: Load Docker image
run: |
docker load --input ${{ github.workspace }}/image.tar
RELEASE_TAG=`cat ${{ github.workspace }}/tag.txt`
echo "RELEASE_TAG=${RELEASE_TAG}" >> $GITHUB_ENV
- name: Push Image
env:
DOCKER_TAG: ${RELEASE_TAG}
DNAME: ${{ secrets.DNAME }}
DPASS: ${{ secrets.DPASS }}
run: |
make push