Skip to content

Commit

Permalink
rm client and add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
aashutoshrathi committed Aug 3, 2024
1 parent 17bb495 commit 18897ad
Show file tree
Hide file tree
Showing 72 changed files with 82 additions and 6,180 deletions.
36 changes: 0 additions & 36 deletions .github/workflows/pages.yml

This file was deleted.

54 changes: 54 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# File: .github/workflows/publish.yml
name: publish-to-github-pages
on:
push:
branches:
- main
- next-app


permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout 🛎️
uses: actions/checkout@v4

- name: Setup Node.js ⚙️ - Cache dependencies ⚡ - Install dependencies 🔧
uses: ./.github/workflows/setup-node

- name: Setup Pages ⚙️
uses: actions/configure-pages@v4
with:
static_site_generator: next

- name: Build with Next.js 🏗️
run: npx next build

- name: Upload artifact 📡
uses: actions/upload-pages-artifact@v3
with:
path: ./game/out

deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

runs-on: ubuntu-latest
needs: build

steps:
- name: Publish to GitHub Pages 🚀
id: deployment
uses: actions/deploy-pages@v4
21 changes: 21 additions & 0 deletions .github/workflows/setup-node/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: setup-node
description: "Setup Node.js ⚙️ - Cache dependencies ⚡ - Install dependencies 🔧"
runs:
using: "composite"
steps:
- name: Setup Node.js ⚙️
uses: actions/setup-node@v4
with:
node-version: 20

- name: Cache dependencies ⚡
id: cache_dependencies
uses: actions/cache@v3
with:
path: game/node_modules
key: node-modules-${{ hashFiles('game/package-lock.json') }}

- name: Install dependencies 🔧
shell: bash
if: steps.cache_dependencies.outputs.cache-hit != 'true'
run: cd game && npm i
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
**/*.sqlite
**/*.env
node_modules/
*.wasm
4 changes: 0 additions & 4 deletions client/.gitignore

This file was deleted.

40 changes: 0 additions & 40 deletions client/README.md

This file was deleted.

Binary file removed client/assets/1.png
Binary file not shown.
Binary file removed client/assets/2.png
Binary file not shown.
Binary file removed client/assets/3.png
Binary file not shown.
Binary file removed client/assets/Hyperspace.otf
Binary file not shown.
Binary file removed client/assets/explode1.wav
Binary file not shown.
Binary file removed client/assets/explode2.wav
Binary file not shown.
Binary file removed client/assets/explode3.wav
Binary file not shown.
Binary file removed client/assets/fire.wav
Binary file not shown.
Binary file removed client/assets/getpowerup.wav
Binary file not shown.
Binary file removed client/assets/life.wav
Binary file not shown.
Binary file removed client/assets/lsaucer.wav
Binary file not shown.
Binary file removed client/assets/powerup.wav
Binary file not shown.
Binary file removed client/assets/sfire.wav
Binary file not shown.
Binary file removed client/assets/ssaucer.wav
Binary file not shown.
Binary file removed client/assets/thrust.wav
Binary file not shown.
Binary file removed client/assets/thumphi.wav
Binary file not shown.
Binary file removed client/assets/thumplo.wav
Binary file not shown.
28 changes: 0 additions & 28 deletions client/comets.d.ts

This file was deleted.

49 changes: 0 additions & 49 deletions client/game/achievement.ts

This file was deleted.

Loading

0 comments on commit 18897ad

Please sign in to comment.