UI Improvements (macOS deployment target = 10.15+, up to 14.4) #192
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: pull request ci | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: macos-latest | |
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 |