This repository has been archived by the owner on Mar 16, 2024. It is now read-only.
bugfix (#61) #3
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
name: AASM build | |
on: | |
push: | |
tags: | |
- v*.** | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
build: | |
- name: Ark-Ascended-Server-Manager.exe | |
platform: windows/amd64 | |
os: windows-latest | |
runs-on: ${{ matrix.build.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Set direct proxy | |
run: go env -w GOPROXY=direct | |
- run: go install github.com/wailsapp/wails/cmd/wails@latest | |
- name: Update wails.json | |
run: node build/updateConfig.js ${{ github.ref_name }} false | |
- uses: dAppServer/[email protected] | |
with: | |
build-name: ${{ matrix.build.name }} | |
build-platform: ${{ matrix.build.platform }} | |
build: true | |
nsis: true | |
package: false | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: AASM Installer | |
path: build/bin/*.exe | |
- name: Upload Release Assets | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
build/bin/*.exe | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |