forked from treeverse/lakeFS
-
Notifications
You must be signed in to change notification settings - Fork 1
81 lines (68 loc) · 2.13 KB
/
docker-publish-exp-image.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
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
name: Docker - publish experimental image
on:
workflow_dispatch:
inputs:
name:
required: true
description: The suffix of the published docker image.
target:
default: 'lakefs'
type: choice
options:
- lakefs
- lakectl
# These permissions are needed to interact with GitHub's OIDC Token endpoint.
permissions:
id-token: write
contents: read
jobs:
deploy:
name: Build and push Docker image
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
# This is used to fetch all the history in order to get the latest tag (for step "Extract Version")
fetch-depth: 0
- name: Set up NodeJS
uses: actions/setup-node@v4
with:
node-version: "18.17.0"
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22.6"
id: go
- uses: bufbuild/[email protected]
with:
github_token: ${{ github.token }}
- name: Extract version
shell: bash
run: echo "tag=$(echo $(git describe --abbrev=1 --tags)-$(echo ${{ inputs.name }}))" >> $GITHUB_OUTPUT
id: version
- name: Generate code
run: make gen VERSION=${{ steps.version.outputs.tag }}
- name: Checks validator
run: make checks-validator
env:
GOLANGCI_LINT_FLAGS: --out-format github-actions
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push lakefs
uses: docker/build-push-action@v5
with:
context: .
target: ${{ inputs.target }}
push: true
platforms: linux/amd64,linux/arm64
build-args: VERSION=${{ steps.version.outputs.tag }}
tags: |
treeverse/experimental-lakefs:${{ steps.version.outputs.tag }}