mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-11 08:56:54 +01:00
27 lines
543 B
YAML
27 lines
543 B
YAML
name: CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: macOS-latest
|
|
|
|
steps:
|
|
- name: Checkout Project
|
|
uses: actions/checkout@v1
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Switch to Xcode 11
|
|
run: sudo xcode-select -s /Applications/Xcode_11.app
|
|
|
|
- name: xcodebuild -showBuildSettings
|
|
run: xcodebuild -showBuildSettings
|
|
|
|
- name: Run Build
|
|
env:
|
|
ENCRYPTION_SECRET: ${{ secrets.ENCRYPTION_SECRET }}
|
|
KEY_SECRET: ${{ secrets.KEY_SECRET }}
|
|
run: buildscripts/ci-build.sh
|