mastodon-ios/.github/workflows/build-only.yml

32 lines
731 B
YAML
Raw Normal View History

name: CI
on:
push:
branches:
2023-10-10 12:48:47 +02:00
- master
- develop
- feature/*
- feature-*
- issue/*
- issue-*
pull_request:
branches:
2023-10-10 12:48:47 +02:00
- develop
# macOS environments: https://github.com/actions/virtual-environments/tree/main/images/macos
jobs:
build:
name: CI build
runs-on: macos-13
steps:
2023-10-10 12:48:47 +02:00
- name: Repository
uses: actions/checkout@v2
2023-10-10 12:48:47 +02:00
- name: Setup Build Environment
env:
2022-10-08 08:01:21 +02:00
NotificationEndpointDebug: ${{ secrets.NotificationEndpointDebug }}
NotificationEndpointRelease: ${{ secrets.NotificationEndpointRelease }}
run: exec ./.github/scripts/setup.sh
2023-10-10 12:48:47 +02:00
- name: Build App
run: bundle exec fastlane ios build_only