Skip to content

Reworded warning message #2

Reworded warning message

Reworded warning message #2

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: windows-2022
steps:
- name: Configure git
run: git config --global core.autocrlf false
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: '1.20.2'
- name: Set up msys2
uses: msys2/setup-msys2@v2
with:
install: make tar zip unzip
path-type: inherit
- name: Build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: msys2 ./ci-release.sh
- name: Archive
uses: actions/upload-artifact@v3
with:
name: artifacts
path: |
dist/
!dist/*/*