Publish Launcher #8
Workflow file for this run
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: Publish Launcher | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Elevate launcher script permissions | |
run: chmod +x ./launch.sh | |
- name: Zip Launcher files | |
run: zip -j ZenithProxyLauncher.zip launch.sh launch.bat launcher.py update_launcher.py | |
- name: Release Artifacts | |
uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "launcher" | |
prerelease: false | |
files: | | |
launch.sh | |
launch.bat | |
launcher.py | |
update_launcher.py | |
ZenithProxyLauncher.zip |