-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (48 loc) · 1.37 KB
/
backend.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
name: Publish staging build for backend
on:
push:
branches:
- "staging"
paths:
- "backend/**"
- .github/workflows/backend.yml
env:
REGISTRY: ghcr.io
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
- name: Checkout submodule
run: git submodule update --init --recursive
- name: Install Just
uses: taiki-e/install-action@just
- name: Install docker
uses: docker-practice/actions-setup-docker@master
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: build backend
uses: docker/build-push-action@v5
with:
build-args: ARCH=x86_64
context: .
file: "./backend/Dockerfile"
push: true
tags: "ghcr.io/mdcpp/mdoj/backend:staging"
labels: "backend"
- name: build migration
uses: docker/build-push-action@v5
with:
build-args: ARCH=x86_64
context: .
file: "./backend/migration/Dockerfile"
push: true
tags: "ghcr.io/mdcpp/mdoj/migration:staging"
labels: "migration"
cache-from: type=gha
cache-to: type=gha,mode=max