Merge pull request #12 from Welltested-AI/submit-executables #27
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 CommandDash Executables | ||
on: | ||
push: | ||
branches: | ||
- build/executables | ||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macOS-latest] | ||
include: | ||
- os: ubuntu-latest | ||
output-name: commanddash-linux | ||
- os: macOS-latest | ||
output-name: commanddash-mac | ||
- os: windows-latest | ||
output-name: commanddash-windows.exe | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dart-lang/setup-dart@v1 | ||
- name: Dart pub get | ||
run: | | ||
cd commanddash | ||
mkdir -p build | ||
dart pub get | ||
- name: Compile | ||
run: | | ||
cd commanddash | ||
dart compile exe bin/commanddash.dart -o build/${{ matrix.output-name }} | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{ matrix.output-name }} # Dynamically name the artifact based on the OS | ||
path: commanddash/build/${{ matrix.output-name }} | ||
test: | ||
needs: build | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
include: | ||
- os: ubuntu-latest | ||
binary-name: commanddash-linux | ||
- os: windows-latest | ||
binary-name: commanddash-windows.exe | ||
- os: macos-latest | ||
binary-name: commanddash-mac | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: ${{ matrix.binary-name }} | ||
path: ./executable | ||
# Ensure binary is executable (necessary for Unix-based systems) | ||
- name: Make binary executable | ||
if: matrix.os != 'windows-latest' | ||
run: chmod +x ./executable/${{ matrix.binary-name }} | ||
- name: Test binary | ||
run: ./executable/${{ matrix.binary-name }} --help | ||
submit-executables: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: commanddash-linux | ||
path: ./executable/commanddash-linux | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: commanddash-mac | ||
path: ./executable/commanddash-mac | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: commanddash-windows.exe | ||
path: ./executable/commanddash-windows.exe | ||
- name: Submit Executables | ||
run: | | ||
chmod +x ./executable/commanddash-linux | ||
curl -X POST "https://api.commanddash.dev/executable/add" \ | ||
-H "Content-Type: multipart/form-data" \ | ||
-F "secret=strongSecretwith#case" \ | ||
-F "version=$(./executable/commanddash-linux min_cli_version)" \ | ||
-F "minimum_client_version=$(./executable/commanddash-linux min_cli_version)" \ | ||
-F "windows_binary=@executable/commanddash-windows.exe" \ | ||
-F "macos_binary=@executable/commanddash-mac" \ | ||
-F "linux_binary=@executable/commanddash-linux" |