chore: fix macos workflow #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: Build Medict Tasks | |
on: | |
push: | |
# tags: | |
# - v* | |
branches: | |
- master | |
- develop | |
jobs: | |
package: | |
strategy: | |
matrix: | |
go-version: [1.21.x] | |
platform: [macos-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Get version tag (unix) | |
if: matrix.platform != 'windows-2019' | |
id: version | |
run: echo "::set-output name=tag::${GITHUB_SHA}" | |
- name: Inall pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8.7.4 | |
run_install: false | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Chechout | |
uses: actions/checkout@v2 | |
- name: Install Wails | |
run: go install github.com/wailsapp/wails/v2/cmd/wails@latest | |
# darwin | |
- name: Build for darwin | |
if: matrix.platform == 'macos-latest' | |
run: | | |
rm build/bin | |
wails build -f -ldflags "-X main.Version=${{ steps.version.outputs.tag }}" | |
- name: Create darwin disk image | |
if: matrix.platform == 'macos-latest' | |
run: | | |
brew install create-dmg | |
ls -lh $PWD && ls -lh $PWD/build | |
create-dmg --volname "Medict" --volicon "build/assets/darwin/dmg_icon.icns" --background "build/assets/darwin/dmg_bg.png" --window-size 512 360 --icon-size 100 --icon "Medict.app" 100 185 --hide-extension "Medict.app" --app-drop-link 388 185 "Medict_${{ steps.version.outputs.tag }}_Darwin_x86_64.dmg" "build" | |
- name: Upload darwin disk image | |
if: matrix.platform == 'macos-latest' | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Medict_${{ steps.version.outputs.tag }}_Darwin_x86_64.dmg | |
path: Medict_${{ steps.version.outputs.tag }}_Darwin_x86_64.dmg |