-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* adjusts to run * balance pong * new love functions * start docs workflow * first run https://github.com/2bt/gorge (only menu) * key config in love.json * start npm package * bump to 0.0.17
- Loading branch information
1 parent
fb9fab0
commit 552cb1a
Showing
7 changed files
with
410 additions
and
11 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: cd | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
tags: | ||
- "*.*.*" | ||
|
||
permissions: | ||
id-token: write | ||
|
||
jobs: | ||
npm: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
uses: actions/checkout@master | ||
- | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '20.x' | ||
registry-url: 'https://registry.npmjs.org' | ||
- | ||
run: | | ||
npm run build | ||
- | ||
working-directory: ./dist | ||
run: | | ||
npm publish --provenance --access public | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: docs | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
|
||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
doxygen: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
uses: actions/checkout@master | ||
- | ||
run: | | ||
mkdir -p vendor | ||
wget "https://raw.githubusercontent.com/gamelly/gly-engine/refs/heads/main/tools/doxygen_filter.lua" -O vendor/doxygen_filter.lua | ||
- | ||
run: | | ||
docker run --rm -v $(pwd):/app -w /app rodrigodornelles/doxygen:lua doxygen | ||
- | ||
uses: actions/configure-pages@v3 | ||
- | ||
uses: actions/upload-pages-artifact@v2 | ||
with: | ||
path: 'html' | ||
- | ||
id: deployment | ||
uses: actions/deploy-pages@v2 |
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
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
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"name": "@gamely/love-engine", | ||
"version": "0.0.17", | ||
"author": "RodrigoDornelles", | ||
"license": "Apache-2.0", | ||
"homepage": "https://docs.gamely.com.br", | ||
"repository": "https://github.com/gamelly/love-engine", | ||
"funding": "https://github.com/sponsors/RodrigoDornelles", | ||
"bugs": "https://github.com/gamelly/love-engine/issues", | ||
"description": "Game Engine written in 100% lua that runs in a vacuum.", | ||
"main": "dist/main.lua", | ||
"scripts": { | ||
"build": "rm -Rf dist;mkdir -p dist/dist;cp src/main.lua dist/dist;cp package.json dist;cp README.md dist" | ||
}, | ||
"keywords": [ | ||
"game engine", | ||
"game", | ||
"engine", | ||
"love2d", | ||
"love" | ||
] | ||
} |
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.