-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from Bazek/development
Fine tuning and pixel-perfect graphics
- Loading branch information
Showing
34 changed files
with
611 additions
and
828 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,37 @@ | ||
name: OpenTTE | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
Build: | ||
runs-on: ubuntu-latest | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Dependencies | ||
run: python3 --version && pip3 install setuptools pip && pip3 install nml | ||
- name: Build | ||
run: python3 build.py --compile OpenTTE | ||
- name: Artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: OpenTTE | ||
path: build/OpenTTE.* | ||
if-no-files-found: error | ||
- name: Release Create | ||
id: release_create | ||
uses: actions/create-release@v1 | ||
with: | ||
tag_name: development.${{ github.run_id }} | ||
release_name: PreRelease development.${{ github.run_id }} | ||
prerelease: true | ||
- name: Release Upload | ||
id: release_upload | ||
uses: actions/upload-release-asset@v1 | ||
with: | ||
upload_url: ${{ steps.release_create.outputs.upload_url }} | ||
asset_path: build/OpenTTE.grf | ||
asset_name: OpenTTE-development.grf | ||
asset_content_type: application/grf |
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,12 @@ | ||
# Build files | ||
build/ | ||
build.json | ||
conf.ps1 | ||
*.grf | ||
*.tar | ||
build/** | ||
|
||
# NML cache | ||
.nmlcache/ | ||
*.cache | ||
*.cacheindex | ||
.nmlcache/** | ||
|
||
# Test files | ||
*test* | ||
|
||
# No clue | ||
master-gfx/ | ||
list_ids.py | ||
# Development and IDE | ||
.vscode/** | ||
.idea/** |
This file was deleted.
Oops, something went wrong.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.