akvirtualcamera/.github/workflows/mac.yml

60 lines
1.6 KiB
YAML
Raw Normal View History

name: Mac
on: [push, pull_request]
env:
2021-11-02 22:09:07 +00:00
QTIFWVER: 4.1.0
2021-08-03 15:32:54 +00:00
NJOBS: 4
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
2021-06-25 15:48:53 +00:00
chmod +x ports/ci/mac/install_deps.sh
./ports/ci/mac/install_deps.sh
2021-06-29 21:22:19 +00:00
- name: Release Build
if: ${{ startsWith(github.ref, 'refs/tags/') }}
run: |
2021-06-25 15:48:53 +00:00
chmod +x ports/ci/mac/build.sh
./ports/ci/mac/build.sh
2021-06-29 21:22:19 +00:00
- name: Release Deploy
if: ${{ startsWith(github.ref, 'refs/tags/') }}
run: |
2021-06-25 15:48:53 +00:00
chmod +x ports/ci/mac/deploy.sh
./ports/ci/mac/deploy.sh
2021-06-29 21:22:19 +00:00
- name: Daily Build
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
env:
DAILY_BUILD: 1
run: |
2021-06-29 21:22:19 +00:00
chmod +x ports/ci/mac/build.sh
./ports/ci/mac/build.sh
- name: Daily Deploy
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
env:
DAILY_BUILD: 1
run: |
chmod +x ports/ci/mac/deploy.sh
./ports/ci/mac/deploy.sh
- name: Release Upload
2021-11-02 19:03:51 +00:00
uses: softprops/action-gh-release@v1
2021-06-29 21:22:19 +00:00
if: ${{ startsWith(github.ref, 'refs/tags/') }}
with:
2021-08-03 15:32:54 +00:00
files: packages/mac/*
2021-06-29 21:22:19 +00:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Daily Build Upload
2021-11-02 19:03:51 +00:00
uses: softprops/action-gh-release@v1
2021-06-29 21:22:19 +00:00
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
with:
2021-06-29 21:47:20 +00:00
body: "${{ github.event.head_commit.message }} (commit: ${{ github.sha }})"
2021-06-29 21:22:19 +00:00
prerelease: true
2021-08-03 15:32:54 +00:00
files: packages/mac/*
2021-06-29 21:22:19 +00:00
name: Daily Build
tag_name: daily-build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}