generated from Joalor64GH/HaxeFlixel-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
9f730d7
commit 3705e07
Showing
6 changed files
with
94 additions
and
31 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,65 @@ | ||
name: Release Build | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
buildWindows: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@main | ||
|
||
- uses: krdlab/setup-haxe@master | ||
with: | ||
haxe-version: 4.3.6 | ||
|
||
- name: Restore Previous Cache | ||
id: cache-build-restore | ||
uses: actions/cache/restore@main | ||
with: | ||
path: | | ||
.haxelib/ | ||
export/release/windows/haxe/ | ||
export/release/windows/obj/ | ||
key: cache-windows-release | ||
|
||
- name: Set Cache Status | ||
id: cache-status | ||
run: echo CACHE_HIT=${{ steps.cache-build-restore.outputs.cache-hit }} | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 | ||
shell: powershell | ||
|
||
- name: Installing Libraries | ||
run: haxe --interp -cp ./actions/libs-installer -D analyzer-optimize -main Main | ||
- name: Create Version Tag | ||
run: echo "${{github.run_id}}" > VERSION | ||
|
||
- name: Compile | ||
run: haxelib run lime build windows | ||
|
||
- name: Clear Previous Cache | ||
uses: actions/github-script@main | ||
with: | ||
script: await require('./actions/cache/clear-cache.js')({github, context}, 'cache-windows-release'); | ||
|
||
- name: Save Current Cache | ||
uses: actions/cache@main | ||
with: | ||
key: cache-windows-release | ||
path: | | ||
.haxelib/ | ||
export/release/windows/haxe/ | ||
export/release/windows/obj/ | ||
restore-keys: | | ||
cache-windows-release | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@main | ||
with: | ||
name: windowsBuild | ||
path: export/release/windows/bin |
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
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,26 +1,16 @@ | ||
# Current To-Dos | ||
* [ ] Add four basic songs | ||
* [X] Basic Documentation | ||
* [X] Add checkers to OptionsState | ||
* [X] Improve ChartingState | ||
* [X] Credits | ||
* [X] Notesplashes | ||
* [X] Add gamepad support | ||
* [X] Modding Support (Using Polymod) | ||
* [X] Tutorial | ||
|
||
# Future To-Dos (After release) | ||
* Maybe a few more songs | ||
* Replay System | ||
* Achievements | ||
* Results | ||
* RGB Notes + Note Coloring | ||
* Improve controls system | ||
* Simple source code reorganization | ||
* Hit window options | ||
* Options organization + better options system | ||
* Customizable Main Menu + Scripted States | ||
* Accuracy + Ranking | ||
* "Note Sustains" | ||
* Better Charting UI | ||
* Song Selector Editor | ||
* [ ] Chart the songs | ||
* [ ] Maybe a few more songs | ||
* [ ] Replay System | ||
* [ ] Achievements | ||
* [ ] Results | ||
* [ ] RGB Notes + Note Coloring | ||
* [ ] Improve controls system | ||
* [ ] Simple source code reorganization | ||
* [ ] Hit window options | ||
* [ ] Options organization + better options system | ||
* [ ] Customizable Main Menu + Scripted States | ||
* [ ] Accuracy + Ranking | ||
* [ ] "Note Sustains" | ||
* [ ] Better Charting UI | ||
* [ ] Song Selector Editor |
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 @@ | ||
{ | ||
"version":"0.8.5", | ||
"description":"Lorem ipsum..." | ||
"version":"1.0.0-pre", | ||
"description":"Initial pre-release build!" | ||
} |