forked from bitcoin-sv/bux-k8s-config
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (39 loc) · 1.14 KB
/
build-bux.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
name: "[Reuse] build-bux-server-docker"
on:
workflow_call:
inputs:
version:
required: true
type: string
jobs:
build-bux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: checkout k8s-config
with:
path: 'k8s-config'
- uses: actions/checkout@v3
name: checkout bux-server
with:
repository: BuxOrg/bux-server
ref: ${{inputs.version}}
fetch-depth: 1
path: 'bux-server'
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Overwrite dockerfile
run: cp ./k8s-config/docker/bux-server.Dockerfile ./bux-server/Dockerfile
- name: Build and push
uses: docker/build-push-action@v4
with:
push: true
tags: 4chainstudio/bux-server:${{inputs.version}}
context: './bux-server'