-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (37 loc) · 1.05 KB
/
judger-agent.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
name: Build Judger Agent Docker Image
on:
push:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-push:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./src/sub-app/judger-agent
steps:
- name: Checkout
uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# with:
# node-version: 16
- run: pwd && ls -la
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and Push Image
uses: docker/build-push-action@v3
with:
context: ./
file: ./Dockerfile
push: true
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/onlinejudge3-judger-agent:1
${{ secrets.DOCKERHUB_USERNAME }}/onlinejudge3-judger-agent:latest