forked from noobaa/noobaa-core
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (35 loc) · 1.04 KB
/
okd-release.yaml
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
name: okd-release
on:
workflow_dispatch: {}
jobs:
image-push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/setup-go@v4
with:
go-version-file: go.mod
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push docker images
env:
IMAGE_REPOSITORY: ghcr.io/teamziax/noobaa-core
run: |
function strip_prefix() {
local str="$1"
local prefix="$2"
echo ${str#"$prefix"}
}
function get_noobaa_version() {
local version=$(cat package.json | jq -r .version)
local without_v=$(strip_prefix "$version" v)
echo "v$without_v"
}
make all
docker tag noobaa ${IMAGE_REPOSITORY}/noobaa-core:$(get_noobaa_version)
docker push ${IMAGE_REPOSITORY}/noobaa-core:$(get_noobaa_version)