-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
3,781 additions
and
2,344 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
on: | ||
push: | ||
push: | ||
|
||
jobs: | ||
deploy: | ||
name: "Deploy KAPLAYGROUND on Cloudflare Workers" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup PNPM | ||
uses: pnpm/action-setup@v4 | ||
- name: Deploy app | ||
uses: cloudflare/wrangler-action@v3 | ||
with: | ||
packageManager: pnpm | ||
apiToken: ${{ secrets.CLOUDFLARE_WORKERS_KEY }} | ||
command: pages deploy dist --project-name=kaplay | ||
preCommands: "pnpm i && pnpm build" | ||
deploy: | ||
name: "Deploy KAPLAYGROUND on Cloudflare Workers" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup PNPM | ||
uses: pnpm/action-setup@v4 | ||
- name: Deploy app | ||
uses: cloudflare/wrangler-action@v3 | ||
with: | ||
packageManager: pnpm | ||
apiToken: ${{ secrets.CLOUDFLARE_WORKERS_KEY }} | ||
command: pages deploy dist --project-name=kaplay | ||
preCommands: "pnpm i && pnpm build" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,29 +14,29 @@ jobs: | |
shell: bash | ||
|
||
steps: | ||
# Checkout the repository to the GitHub Actions runner | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
submodules: true | ||
# Checkout the repository to the GitHub Actions runner | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
submodules: true | ||
|
||
# Update references | ||
- name: Git Submodule Update | ||
run: | | ||
git pull --recurse-submodules | ||
git submodule update --remote --recursive | ||
# Update references | ||
- name: Git Submodule Update | ||
run: | | ||
git pull --recurse-submodules | ||
git submodule update --remote --recursive | ||
- name: Create Pull Request | ||
uses: peter-evans/[email protected] | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
commit-message: "chore: bump repo" | ||
committer: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | ||
author: ${{ github.actor }} <${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com> | ||
signoff: false | ||
branch: example-patches | ||
delete-branch: true | ||
title: "chore: bump repo" | ||
reviewers: lajbel | ||
body: "ohhi" | ||
- name: Create Pull Request | ||
uses: peter-evans/[email protected] | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
commit-message: "chore: bump repo" | ||
committer: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | ||
author: ${{ github.actor }} <${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com> | ||
signoff: false | ||
branch: example-patches | ||
delete-branch: true | ||
title: "chore: bump repo" | ||
reviewers: lajbel | ||
body: "ohhi" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,3 +27,4 @@ pnpm-debug.log* | |
public/kaboom.js | ||
public/kaboom.js.map | ||
.vite | ||
assets.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"typescript.tsdk": "node_modules/typescript/lib" | ||
} | ||
"typescript.tsdk": "node_modules/typescript/lib" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
# Setup | ||
|
||
``` | ||
git submodule init | ||
git submodule update | ||
pnpm i | ||
pnpm dev | ||
``` | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# KAPLAYGROUND | ||
|
||
KAPLAYGROUND is a playground for KAPLAY. You can test, create and learn how | ||
KAPLAY works with examples. | ||
KAPLAY works with examples. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.