-
Notifications
You must be signed in to change notification settings - Fork 109
81 lines (76 loc) · 2.25 KB
/
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
78
79
80
81
name: Build
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
setup-vars:
name: Setup variables
runs-on: ubuntu-latest
outputs:
now_tag: ${{ steps.set-variables.outputs.now_tag }}
steps:
- id: set-variables
name: Setup variables
shell: bash
run: |
echo "now_tag=RELEASE.$(TZ=UTC date +'%Y-%m-%dT%H-%M-%SZ')" >> "$GITHUB_OUTPUT"
amd64:
name: Build amd64
runs-on: ubuntu-latest
needs: [setup-vars]
outputs:
version: ${{ steps.properties.outputs.version }}
changelog: ${{ steps.properties.outputs.changelog }}
steps:
# Free GitHub Actions Environment Disk Space
- name: Maximize Build Space
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /usr/local/lib/android
sudo rm -rf /opt/ghc
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push
uses: docker/build-push-action@v4
with:
push: false
tags: |
smallcloud/refact_self_hosting:latest
smallcloud/refact_self_hosting:RELEASE.${{ needs.setup-vars.outputs.now_tag }}
platforms: |
linux/amd64
# commented temporary until cpu is not supported
# arm64:
# name: Build arm64
# runs-on: ubuntu-latest
# needs: [setup-vars]
# outputs:
# version: ${{ steps.properties.outputs.version }}
# changelog: ${{ steps.properties.outputs.changelog }}
# steps:
# # Free GitHub Actions Environment Disk Space
# - name: Maximize Build Space
# run: |
# sudo rm -rf /usr/share/dotnet
# sudo rm -rf /usr/local/lib/android
# sudo rm -rf /opt/ghc
#
# - name: Set up QEMU
# uses: docker/setup-qemu-action@v2
#
# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v2
#
# - name: Build and push
# uses: docker/build-push-action@v4
# with:
# push: false
# tags: |
# smallcloud/refact_self_hosting:latest
# smallcloud/refact_self_hosting:RELEASE.${{ needs.setup-vars.outputs.now_tag }}
# platforms: |
# linux/arm64