Settings is a now a dialog instead of a new window #80
This file contains hidden or 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 and upload artifact | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: 'ubuntu-latest' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.23.4' | |
| - name: Install dependencies | |
| run: >- | |
| sudo apt-get update && | |
| sudo apt-get install | |
| gcc | |
| libegl1-mesa-dev | |
| libgl1-mesa-dev | |
| libgles2-mesa-dev | |
| libx11-dev | |
| xorg-dev | |
| xvfb | |
| language-pack-en | |
| - name: test | |
| run: go test -v ./... | |
| - name: 'Build and package' | |
| run: | | |
| go install github.com/fyne-io/fyne-cross@latest | |
| fyne-cross windows -tags release | |
| fyne-cross linux -tags release | |
| - name: Upload a Build Artifact | |
| uses: actions/upload-artifact@v4.4.3 | |
| with: | |
| # Artifact name | |
| name: gitm | |
| # A file, directory or wildcard pattern that describes what to upload | |
| path: "fyne-cross/dist" |