-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (42 loc) · 1.31 KB
/
main.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
name: 🐳🐳🐳 Build and publish docker image 🐳🐳🐳
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: Build Docker Image for Unity ${{ matrix.unity.version }}
strategy:
fail-fast: false
matrix:
unity:
- { version: "ubuntu-2021.3.19f1-linux-il2cpp-1" }
- { version: "ubuntu-2021.3.24f1-linux-il2cpp-1" }
- { version: "ubuntu-2021.3.40f1-linux-il2cpp-1" }
coverage:
- false
runs-on: ubuntu-latest
timeout-minutes: 35
steps:
- name: Clean up unused Docker resources
run: docker system prune -af
- name: Check disk space
run: df -h
- name: Set up Git repository
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to Github Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push docker image
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: ghcr.io/readycodeio/readycode-docker-builder/editor:${{ matrix.unity.version }}
file: Dockerfile-${{ matrix.unity.version }}