Skip to content

Add dummy Wails project for build testing vs an external project. #1

Add dummy Wails project for build testing vs an external project.

Add dummy Wails project for build testing vs an external project. #1

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main", "v2", "v3", "dev" ]
pull_request:
branches: [ "main", "v2", "v3", "dev" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
ubuntu2404:
# The type of runner that the job will run on
runs-on: ubuntu-24.04
defaults:
run:
shell: bash
working-directory: wails
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: dAppServer/wails-build-action@main
with:
build-name: lethean
build-platform: linux/amd64
build-tags: webkit2_41
wails-build-webview2: "embed"
ubuntu2004:
# The type of runner that the job will run on
runs-on: ubuntu-20.04
defaults:
run:
shell: bash
working-directory: wails
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: dAppServer/wails-build-action@main
with:
build-name: lethean
build-platform: linux/amd64
wails-build-webview2: "embed"
macos:
runs-on: macos-latest
defaults:
run:
working-directory: wails
steps:
# Checkout code
- uses: dAppServer/wails-build-action@main
with:
build-name: lethean
build-platform: darwin/universal
sign: "false"
sign-macos-apple-password: ${{ secrets.APPLE_PASSWORD }}
sign-macos-app-id: "Developer ID Application: Lethean LTD (W2DNA5L5DY)"
sign-macos-app-cert: ${{ secrets.MAC_DEVELOPER_CERT }}
sign-macos-app-cert-password: ${{ secrets.MAC_DEVELOPER_PASS }}
sign-macos-installer-id: "Developer ID Installer: Lethean LTD (W2DNA5L5DY)"
sign-macos-installer-cert: ${{ secrets.MAC_DEVELOPER_INSTALL_CERT }}
sign-macos-installer-cert-password: ${{ secrets.MAC_DEVELOPER_INSTALL_PASS }}
windows:
runs-on: windows-2022
defaults:
run:
working-directory: wails
steps:
# Checkout code
- uses: dAppServer/wails-build-action@main
with:
build-name: lethean.exe
build-platform: windows/amd64
wails-build-webview2: "embed"
nsis: 'false'
windows-nsis:
runs-on: windows-2022
defaults:
run:
shell: bash
working-directory: wails
steps:
# Checkout code
- uses: dAppServer/wails-build-action@main
with:
build-name: lethean.exe
build-platform: windows/amd64
wails-build-webview2: "embed"
nsis: "true"