Skip to content

chore: use macos 14 runner with M1 #255

chore: use macos 14 runner with M1

chore: use macos 14 runner with M1 #255

Workflow file for this run

name: pull request ci
on: [pull_request]
jobs:
build:
runs-on: macos-14
steps:
- name: Checkout last commit
uses: actions/checkout@v3
with:
submodules: true
- name: Configure build environment
run: |
echo git_ref_name="$(git describe --always)" >> $GITHUB_ENV
- name: Build Squirrel
run: ./action-build.sh package
- name: Upload Squirrel artifact
uses: actions/upload-artifact@v3
with:
name: Squirrel-${{ env.git_ref_name }}.zip
path: package/*.pkg
# keep 30 days
retention-days: 30