forked from judge0/compilers
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (35 loc) · 963 Bytes
/
publish.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
name: Deploy to GitHub Container Registry
on:
push:
branches:
- master
paths:
- docker-compose.yml
- Dockerfile
- .github/**
jobs:
deploy:
runs-on: ubuntu-latest
env:
IMAGE_NAME: ghcr.io/inzhenerka/judge0-plus-compiler:latest
steps:
- name: Maximize build space
uses: AdityaGarg8/[email protected]
with:
remove-android: 'true'
remove-dotnet: 'true'
remove-haskell: 'true'
- name: 🔃 Checkout repository
uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ env.IMAGE_NAME }}