Skip to content

feat: show both group ranking and global ranking in hub #57

feat: show both group ranking and global ranking in hub

feat: show both group ranking and global ranking in hub #57

Workflow file for this run

name: build
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
env:
IMAGE: 'ghcr.io/ustclug/hackergame:latest'
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Build Docker image
run: |
docker pull "$IMAGE"
docker build -t "$IMAGE" --cache-from "$IMAGE" .
- name: Push Docker image
run: |
docker login ghcr.io -u ${{ github.actor }} --password-stdin <<< "${{ secrets.GITHUB_TOKEN }}"
docker push "$IMAGE"