Skip to content

Commit

Permalink
fix: base path change + fix game urls
Browse files Browse the repository at this point in the history
  • Loading branch information
NewKrok committed Jun 21, 2022
1 parent 88454f4 commit 360bf6d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/prod-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ jobs:
uses: SamKirkland/[email protected]
with:
local-dir: "./build/"
server-dir: ./web/
server-dir: ./
server: ${{secrets.FTP_SERVER}}
username: ${{secrets.FTP_USER_NAME}}
password: ${{secrets.FTP_PASSWORD}}
exclude: .git* - .git*/** - .vscode/** - .github/** - *.gpg - *.keys
dangerous-clean-slate: true
dangerous-clean-slate: false
6 changes: 3 additions & 3 deletions src/components/gamer-zone/gamer-zone.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ const games = [
label: "Impossible Wheels",
target: "impossible-wheels",
preview: "/games/impossible-wheels/media/preview.webp",
url: "http://flashplusplus.net/html-game-standalone/impossible-wheels",
url: "https://flashplusplus.net/html-game-standalone/impossible-wheels",
},
{
label: "Valley Race",
target: "valley-race",
preview: "/games/valley-race/media/preview.webp",
url: "http://flashplusplus.net/html-game-standalone/valley-race",
url: "https://flashplusplus.net/html-game-standalone/valley-race",
},
{
label: "Mountain Monster",
target: "mountain-monster",
preview: "/games/mountain-monster/media/preview.webp",
url: "http://flashplusplus.net/html-game-standalone/mountain-monster-html5",
url: "https://flashplusplus.net/html-game-standalone/mountain-monster-html5",
},
];

Expand Down

0 comments on commit 360bf6d

Please sign in to comment.