Skip to content

1.0.22 - Build

1.0.22 - Build #2

Workflow file for this run

name: Build
run-name: ${{ github.ref_name }} - Build
on:
push:
tags:
- "*"
jobs:
build:
strategy:
# Failure in one platform build won't impact the others
fail-fast: false
matrix:
build:
- name: 'resticity'
platform: 'linux/amd64'
os: 'ubuntu-latest'
- name: 'Resticity'
platform: 'windows/amd64'
os: 'windows-latest'
# - name: 'Resticity'
# platform: 'darwin/universal'
# os: 'macos-latest'
runs-on: ${{ matrix.build.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Build wails
uses: dAppServer/[email protected]
id: build
with:
build-name: ${{ matrix.build.name }}
build-platform: ${{ matrix.build.platform }}
package: true
go-version: '1.21'
# release:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: softprops/action-gh-release@v2
# env:
# GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}