interface tide up #91
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
#on: [push] | |
on: | |
push: | |
tags: | |
- '*' | |
permissions: | |
contents: write | |
jobs: | |
Build-Release-Windows: | |
runs-on: windows-latest | |
env: | |
GOPRIVATE: github.com/mpkondrashin/ddan | |
DDAN_FOR_SANDBOXER: ${{ secrets.DDAN_FOR_SANDBOXER }} | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: ls -LR | |
run: Get-ChildItem -Recurse | Format-Table -Property Mode, LastWriteTime, Length, FullName | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21.5 | |
- name: Config git | |
run: git config --global url.https://${ENV:DDAN_FOR_SANDBOXER}@github.com/.insteadOf https://github.com/ | |
- name: Install Fyne | |
run: go install fyne.io/fyne/v2/cmd/fyne@latest | |
- name: Install RSRC | |
run: go install github.com/akavel/rsrc@latest | |
- name: Build Win64 | |
run: make | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: | | |
setup_windows_amd64.zip | |
Build-Release-Darwin-amd64: | |
runs-on: macos-13 | |
env: | |
GOPRIVATE: github.com/mpkondrashin/ddan | |
DDAN_FOR_SANDBOXER: ${{ secrets.DDAN_FOR_SANDBOXER }} | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: ls -lR | |
run: ls -lR | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21.5 | |
- name: Config git | |
run: git config --global url.https://[email protected]/.insteadOf https://github.com/ | |
- name: Install Fyne | |
run: go install fyne.io/fyne/v2/cmd/fyne@latest | |
- name: Install RSRC | |
run: go install github.com/akavel/rsrc@latest | |
- name: Build Darwin | |
run: make -f Makefile_darwin | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: | | |
setup_darwin_amd64.zip | |
Build-Release-Darwin-arm64: | |
runs-on: flyci-macos-large-latest-m2 #macos-13-xlarge | |
env: | |
GOPRIVATE: github.com/mpkondrashin/ddan | |
DDAN_FOR_SANDBOXER: ${{ secrets.DDAN_FOR_SANDBOXER }} | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: ls -lR | |
run: ls -lR | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21.5 | |
- name: Config git | |
run: git config --global url.https://[email protected]/.insteadOf https://github.com/ | |
- name: Install Fyne | |
run: go install fyne.io/fyne/v2/cmd/fyne@latest | |
- name: Install RSRC | |
run: go install github.com/akavel/rsrc@latest | |
- name: Build Darwin | |
run: make -f Makefile_darwin | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: | | |
setup_darwin_arm64.zip |