diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index 1a944d2..4e083c1 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -63,7 +63,7 @@ jobs: git stash pop jq ".version = \"$new_version\"" package.json > temp.json && mv temp.json package.json git add . - git commit -m "Automated update by GitHub Actions" + git commit -m "Automated update by Forgejo Actions" git push origin HEAD:${{ github.ref_name }} - name: Build and push uses: docker/build-push-action@v6 diff --git a/src/app/mario/mario.component.ts b/src/app/mario/mario.component.ts index 9e30f65..991d365 100644 --- a/src/app/mario/mario.component.ts +++ b/src/app/mario/mario.component.ts @@ -207,6 +207,7 @@ import { Subscription } from 'rxjs'; this.ctx.fillRect(this.mario.x + 10, this.mario.y + 17, 4, 4); this.ctx.fillRect(this.mario.x + 26, this.mario.y + 17, 4, 4); + // Finish line this.ctx.fillStyle = 'yellow'; this.ctx.fillRect(this.canvasWidth - 60, this.canvas.height - 160, 20, 100); this.ctx.fillStyle = 'black';