2021-04-21 17:58:36 +02:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- develop
|
|
|
|
- feature/*
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- develop
|
|
|
|
|
|
|
|
# macOS environments: https://github.com/actions/virtual-environments/tree/main/images/macos
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: CI build
|
2022-10-08 09:16:10 +02:00
|
|
|
runs-on: macos-12
|
2021-04-21 17:58:36 +02:00
|
|
|
steps:
|
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: setup
|
2022-10-08 08:01:21 +02:00
|
|
|
env:
|
|
|
|
NotificationEndpointDebug: ${{ secrets.NotificationEndpointDebug }}
|
|
|
|
NotificationEndpointRelease: ${{ secrets.NotificationEndpointRelease }}
|
2021-04-21 17:58:36 +02:00
|
|
|
run: exec ./.github/scripts/setup.sh
|
|
|
|
- name: build
|
|
|
|
run: exec ./.github/scripts/build.sh
|