-
Notifications
You must be signed in to change notification settings - Fork 4
66 lines (59 loc) · 1.76 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
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: |
GIT_BRANCH=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}
if [[ ${GIT_BRANCH} == "main" ]]; then
echo "now_tag=${GIT_BRANCH}.$(TZ=UTC date +'%Y-%m-%dT%H-%M-%SZ')" >> "$GITHUB_OUTPUT"
else
echo "now_tag=${GIT_BRANCH}" >> "$GITHUB_OUTPUT"
fi
build-and-push-image:
name: Dockerize and push
runs-on: ubuntu-latest
needs: [setup-vars]
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
- uses: actions/checkout@v3
- name: npm install
run: |
npm install
npm run build
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Login to GAR
uses: docker/login-action@v2
with:
registry: europe-west4-docker.pkg.dev
username: _json_key
password: ${{ secrets.GAR_JSON_KEY }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push
uses: docker/build-push-action@v4
with:
context: ./
file: ./Dockerfile
push: true
tags: |
europe-west4-docker.pkg.dev/small-storage1/databases-and-such/docs-refact-ai:${{ needs.setup-vars.outputs.now_tag }}
platforms: |
linux/amd64