File size: 1,461 Bytes
aa739dd
 
 
 
 
 
 
 
 
 
 
826f661
 
aa739dd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
826f661
aa739dd
 
 
 
 
 
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
name: Push Docker image

on:
  push:
    branches:
      - master
    paths:
      - '.github/workflows/push_docker.yaml'
      - 'pegasus/**'
      - 'scripts/**'
      - 'sharegpt/**'
      - 'spitfight/**'
      - 'deployment/benchmark.Dockerfile'
      - 'LICENSE'
      - 'requirements-benchmark.txt'
      - '.gitignore'

concurrency:
  group: ${{ github.ref }}-dhpush
  cancel-in-progress: true

jobs:
  build_and_push:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout repository
        uses: actions/checkout@v3
      - name: Docker Hub login
        uses: docker/login-action@v2
        with:
          username: ${{ secrets.DOCKER_HUB_USERNAME }}
          password: ${{ secrets.DOCKER_HUB_TOKEN }}
      - name: Generate image metadata
        id: meta
        uses: docker/metadata-action@v4
        with:
          images: mlenergy/leaderboard
          tags: latest
      - name: Setup Docker Buildx
        uses: docker/setup-buildx-action@v2
      - name: Build and push to Docker Hub
        uses: docker/build-push-action@v3
        with:
          context: .
          file: deployment/benchmark.Dockerfile
          builder: ${{ steps.buildx.outputs.name }}
          push: true
          tags: ${{ steps.meta.outputs.tags }}
          labels: ${{ steps.meta.outputs.labels }}
          cache-from: type=registry,ref=mlenergy/leaderboard:buildcache
          cache-to: type=registry,ref=mlenergy/leaderboard:buildcache,mode=max