Make video dismissal gesture smooth (#13) #4
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: master_workflow | |
on: | |
push: | |
branches: | |
- 'master' | |
jobs: | |
build: | |
runs-on: ${{ matrix.runsOn }} | |
env: | |
DEVELOPER_DIR: "/Applications/${{ matrix.xcode }}/Contents/Developer" | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Build On ${{ matrix.name }} | |
continue-on-error: false | |
run: | | |
xcodebuild -scheme DarkRoom -destination '${{ matrix.destination }}' build | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- destination: 'platform=iOS Simulator,name=iPhone 13' | |
runsOn: macos-12 | |
xcode: "Xcode_13.4.1.app" | |
name: "iPhone 13, iOS Latest, Xcode 13.4.1" | |
build-docc: | |
needs: build | |
runs-on: macos-12 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
with: | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: build static site | |
uses: kiarashvosough1999/[email protected] | |
deploy-docc-to-github-pages: | |
needs: build-docc | |
runs-on: ubuntu-latest | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
permissions: | |
pages: write | |
contents: read | |
id-token: write | |
steps: | |
- name: deploy static site | |
uses: kiarashvosough1999/[email protected] |