Hilbish/.github/workflows/build.yml

66 lines
1.8 KiB
YAML
Raw Normal View History

name: Build
on:
2024-05-03 16:47:24 +00:00
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
2024-07-21 16:24:10 +00:00
name: ${{ matrix.goos }}-${{ matrix.goarch }}${{ matrix.midnight == 'true' && ' (Midnight Edition)' || ''}}
runs-on: ubuntu-latest
strategy:
matrix:
2024-07-21 15:37:08 +00:00
midnight: [false, true]
2022-02-28 22:53:58 +00:00
goos: [linux, windows, darwin]
goarch: ["386", amd64, arm64]
exclude:
- goarch: "386"
goos: darwin
- goarch: arm64
goos: windows
steps:
- name: Checkout sources
2024-05-03 16:47:24 +00:00
uses: actions/checkout@v4
2022-04-30 16:00:41 +00:00
with:
submodules: true
- name: Setup Go
2024-05-03 16:47:24 +00:00
uses: actions/setup-go@v5
2021-05-20 22:31:30 +00:00
with:
2024-07-19 13:48:01 +00:00
go-version: '1.22.2'
- name: Download Task
run: 'sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d'
2024-07-21 16:24:10 +00:00
- name: Build
2024-07-21 15:37:08 +00:00
run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} ./bin/task ${{ matrix.midnight == 'true' && 'midnight' || ''}}
2024-05-03 16:47:24 +00:00
- uses: actions/upload-artifact@v4
2022-03-02 10:42:48 +00:00
if: matrix.goos == 'windows'
with:
name: hilbish${{ matrix.midnight == 'true' && '-midnight-edition' || ''}}-${{ matrix.goos }}-${{ matrix.goarch }}
2022-05-06 23:06:06 +00:00
path: |
hilbish.exe
LICENSE
README.md
CHANGELOG.md
.hilbishrc.lua
nature
libs
docs
emmyLuaDocs
2024-05-03 16:47:24 +00:00
- uses: actions/upload-artifact@v4
2022-03-02 10:42:48 +00:00
if: matrix.goos != 'windows'
2021-05-20 22:36:36 +00:00
with:
name: hilbish${{ matrix.midnight == 'true' && '-midnight-edition' || ''}}-${{ matrix.goos }}-${{ matrix.goarch }}
path: |
2022-05-06 23:06:06 +00:00
hilbish
2022-04-30 14:50:06 +00:00
LICENSE
README.md
CHANGELOG.md
.hilbishrc.lua
nature
libs
docs
emmyLuaDocs