Skip to content

Fix location.hash when there are multiple '%'. #56

Fix location.hash when there are multiple '%'.

Fix location.hash when there are multiple '%'. #56

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"