Release #4
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: Release | |
on: | |
workflow_dispatch | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
- name: Test | |
run: cargo test --release | |
- name: Build csdemoparser | |
run: cargo build -p csdemoparser --release | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.os }} | |
path: | | |
target/release/csdemoparser | |
target/release/csdemoparser.exe | |
package: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v4 | |
# oldui | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
- run: npm install -g bower | |
- run: bower install | |
# Clojure | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- name: Install Leiningen | |
uses: DeLaGuardo/[email protected] | |
with: | |
lein: '2.10.0' | |
- name: Cache Clojure dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: cljdeps-${{ hashFiles('project.clj') }} | |
restore-keys: cljdeps- | |
- name: Build jar | |
run: LEIN_SNAPSHOTS_IN_RELEASE=1 lein uberjar | |
# Package | |
- uses: actions/download-artifact@v4 | |
- name: Package Windows | |
run: | | |
mkdir windows/headshotbox | |
cp windows-latest/csdemoparser.exe windows/headshotbox/ | |
cp target-lein/hsbox-*-standalone.jar windows/headshotbox/hsbox-standalone.jar | |
echo 'start javaw -jar hsbox-standalone.jar --port 4000 --systray' > windows/headshotbox/headshotbox.bat | |
echo 'java -jar hsbox-standalone.jar --port 4000' > windows/headshotbox/headshotbox_console.bat | |
cd windows && zip ../headshotbox-win.zip headshotbox/* | |
- name: Package Linux | |
run: | | |
mkdir linux/headshotbox | |
cp ubuntu-20.04/csdemoparser linux/headshotbox/ | |
cp target-lein/hsbox-*-standalone.jar linux/headshotbox/hsbox-standalone.jar | |
echo 'java -jar hsbox-standalone.jar --port 4000' > linux/headshotbox/headshotbox.sh | |
chmod a+x linux/headshotbox/headshotbox.sh | |
cd linux && zip ../headshotbox-linux.zip headshotbox/* | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
draft: true | |
files: | | |
headshotbox-linux.zip | |
headshotbox-win.zip |