fix gui, clean commands #60
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: Build Dynamite | |
on: [push] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
go-version: ['1.20.x'] | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Get dependencies | |
run: sudo apt-get update && sudo apt-get install gcc libgl1-mesa-dev libx11-dev xorg-dev libwayland-dev libxkbcommon-dev bc | |
if: ${{ runner.os == 'Linux' }} | |
- name: Build | |
run: go build -v ./... | |
- name: Upload Go build results linux | |
uses: actions/upload-artifact@v3 | |
if: ${{ runner.os == 'Linux' }} | |
with: | |
name: Dynamite-Linux | |
path: dynamite | |
- name: Upload Go build results windows | |
uses: actions/upload-artifact@v3 | |
if: ${{ runner.os == 'Windows' }} | |
with: | |
name: Dynamite-Windows | |
path: dynamite.exe | |
- name: Upload Go build results macos | |
uses: actions/upload-artifact@v3 | |
if: ${{ runner.os == 'macOS' }} | |
with: | |
name: Dynamite-macOS | |
path: dynamite |