From 7f91efc3141c857f49d986f78152c591cc95e131 Mon Sep 17 00:00:00 2001 From: Mike Sawka Date: Sun, 7 Jan 2024 23:48:10 -0800 Subject: [PATCH] working on a macos x86 build workflow (#216) must check in to main to test --- .github/workflows/build-macos-x86.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/build-macos-x86.yml diff --git a/.github/workflows/build-macos-x86.yml b/.github/workflows/build-macos-x86.yml new file mode 100644 index 00000000..bb766733 --- /dev/null +++ b/.github/workflows/build-macos-x86.yml @@ -0,0 +1,17 @@ +name: "Build MacOS x86" +on: workflow_dispatch +jobs: + runbuild: + name: "Build MacOS x86" + runs-on: macos-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v4 + with: + go-version: '1.21.5' + - run: brew tap scripthaus-dev/scripthaus + - run: brew install scripthaus + - run: yarn --frozen-lockfile + - run: scripthaus run build-package + +