forked from joelacus/RedditEnhancer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a4a0675
commit 84b674c
Showing
1 changed file
with
25 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,25 @@ | ||
# You may pin to the exact commit or the version. | ||
# uses: maierj/fastlane-action@5a3b971aaa26776459bb26894d6c1a1a84a311a7 | ||
uses: maierj/[email protected] | ||
with: | ||
# The lane that should be executed. | ||
lane: | ||
# The relative path from the project root directory to the subdirectory where the fastlane folder is located. | ||
subdirectory: # optional | ||
# If set to true, adds the verbose option to the fastlane command for extended log output. | ||
verbose: # optional | ||
# The options that should be passed as arguments to the lane. The options should be serialized as a JSON object. | ||
options: # optional | ||
# The env value that should be passed as an argument to the lane. The value should match to one of your fastlane env files. | ||
env: # optional | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- release/* | ||
|
||
jobs: | ||
test: | ||
runs-on: macos-10.15 | ||
timeout-minutes: 15 | ||
steps: | ||
- name: Git - Checkout | ||
uses: actions/[email protected] | ||
with: | ||
ref: ${{ github.ref }} | ||
- name: Setup - Xcode | ||
run: xcode-select -s /Applications/Xcode_13.2.app | ||
- name: Setup - Ruby and bundler dependencies | ||
uses: ruby/[email protected] | ||
with: | ||
bundler-cache: true | ||
- name: Safari Webstore Upload via Browser Platform Publish | ||
uses: PlasmoHQ/bpp@v2 | ||
with: | ||
keys: ${{ secrets.BPP_KEYS }} |