Update hsl.json #12
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
name: HikariServerLauncher Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
tag_version: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Bump version and push tag | |
id: tag | |
uses: anothrNick/github-tag-action@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CUSTOM_TAG: "v${{ vars.VERSION }}" | |
outputs: | |
new_tag: ${{ steps.tag.outputs.new_tag }} | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, windows-latest] | |
needs: tag_version | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: 3.12.4 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Build executable(Windows) | |
if: ${{ matrix.os == 'windows-latest' }} | |
uses: Nuitka/Nuitka-Action@main | |
with: | |
nuitka-version: main | |
script-name: main.py | |
onefile: true | |
mingw64: true | |
output-file: "HikariServerLauncher-${{ vars.VERSION }}.exe" | |
windows-icon-from-ico: HSL.ico | |
company-name: HikariRevivalProject | |
product-name: HikariServerLauncher | |
product-version: ${{ vars.VERSION }} | |
file-description: HikariServerLauncher | |
copyright: "Copyright 2024 Hikari" | |
include-data-files: lang/*.json=lang/ | |
- name: Build executable(Linux) | |
if: ${{ matrix.os == 'ubuntu-20.04' }} | |
uses: Nuitka/Nuitka-Action@main | |
with: | |
nuitka-version: main | |
script-name: main.py | |
onefile: true | |
mingw64: true | |
output-file: "HikariServerLauncher-${{ vars.VERSION }}.bin" | |
company-name: HikariRevivalProject | |
product-name: HikariServerLauncher | |
product-version: ${{ vars.VERSION }} | |
file-description: HikariServerLauncher | |
copyright: "Copyright 2024 Hikari" | |
include-data-files: lang/*.json=lang/ | |
- name: Upload executable | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ runner.os}} Build | |
path: | | |
build/*.exe | |
build/*.bin | |
create_release: | |
needs: ['build', 'tag_version'] | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Download executable | |
uses: actions/download-artifact@v3 | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ needs.tag_version.outputs.new_tag }} | |
release_name: Release ${{ needs.tag_version.outputs.new_tag }} | |
body: | | |
HikariServerLauncher Release ${{ needs.tag_version.outputs.new_tag }} | |
Release automatically by Github Actions | |
draft: false | |
prerelease: false | |
outputs: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
upload_release_asset: | |
needs: ['tag_version', 'create_release'] | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Download executable | |
uses: actions/download-artifact@v3 | |
- name: Upload Release Asset(Linux) | |
if: ${{ matrix.os == 'ubuntu-20.04' }} | |
id: upload_release_asset_linux | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
asset_content_type: application/octet-stream | |
upload_url: ${{ needs.create_release.outputs.upload_url }} | |
asset_path: Linux Build/HikariServerLauncher-${{ needs.tag_version.outputs.new_tag }}.bin | |
asset_name: HikariServerLauncher-${{ needs.tag_version.outputs.new_tag }}.bin | |
- name: ls | |
run: ls -R | |
- name: Upload Release Asset(Windows) | |
if: ${{ matrix.os == 'windows-latest' }} | |
id: upload_release_asset_win | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
asset_content_type: application/octet-stream | |
upload_url: ${{ needs.create_release.outputs.upload_url }} | |
asset_path: Windows Build/HikariServerLauncher-${{ needs.tag_version.outputs.new_tag }}.exe | |
asset_name: HikariServerLauncher-${{ needs.tag_version.outputs.new_tag }}.exe | |