forked from BradLarson/GPUImage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbitrise.yml
31 lines (25 loc) · 895 Bytes
/
bitrise.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
format_version: '6'
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
project_type: ios
workflows:
deploy:
steps:
- script:
deps:
brew:
- name: node
- name: streamlayer/formulas/carthage
- name: streamlayer/formulas/prefixify
inputs:
- content: |-
#!/bin/bash
set -ex
yarn add semantic-release @semantic-release/exec @semantic-release/git
xcconfig=$(mktemp /tmp/static.xcconfig.XXXXXX)
trap 'rm -f "$xcconfig"; git checkout -- "$DIR"' INT TERM HUP EXIT
echo "MACH_O_TYPE = staticlib" >> $xcconfig
echo "DEBUG_INFORMATION_FORMAT = dwarf" >> $xcconfig
echo "CLANG_ENABLE_MODULE_DEBUGGING = NO" >> $xcconfig
export XCODE_XCCONFIG_FILE="$xcconfig"
yarn semantic-release