Merge pull request #3 from imodeveloperlab/development #28
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
name: Archive Simulator version of DSKit | |
on: | |
push: | |
paths: | |
- 'DSKit/**' | |
- 'DSKitFramework/**' | |
- 'fastlane/**' | |
jobs: | |
test: | |
runs-on: self-hosted | |
if: "contains(github.event.head_commit.message, 'archive')" | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build all frameworks, test, and archive | |
run: fastlane prepareForDeliverySimulatorVersion | |
- name: Upload report result | |
continue-on-error: true | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Simulator version of DSKit | |
path: DSKitFramework |