Skip to content

Commit

Permalink
Keep only tests jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
waliid committed Dec 10, 2024
1 parent 7e9d712 commit 177f2f1
Showing 1 changed file with 35 additions and 35 deletions.
70 changes: 35 additions & 35 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ on: # yamllint disable-line rule:truthy
push:

jobs:
check-quality:
name: 🔎 Check quality
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
# check-quality:
# name: 🔎 Check quality
# runs-on: macos-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v4

- name: Run the quality check
run: make check-quality
# - name: Run the quality check
# run: make check-quality

tests:
name: 🧪 Tests
Expand All @@ -37,33 +37,33 @@ jobs:
check_name: 📋 Unit test report (${{ matrix.platform }})
fail_on_failure: true

archive-demos:
name: 📦 Archives
runs-on: macos-latest
strategy:
matrix:
platform: [ios, tvos]
steps:
- name: Checkout code
uses: actions/checkout@v4
# archive-demos:
# name: 📦 Archives
# runs-on: macos-latest
# strategy:
# matrix:
# platform: [ios, tvos]
# steps:
# - name: Checkout code
# uses: actions/checkout@v4

- name: Add Apple certificate
run: |
Scripts/add-apple-certificate.sh \
$RUNNER_TEMP \
${{ secrets.KEYCHAIN_PASSWORD }} \
${{ secrets.APPLE_DEV_CERTIFICATE }} \
${{ secrets.APPLE_DEV_CERTIFICATE_PASSWORD }}
# - name: Add Apple certificate
# run: |
# Scripts/add-apple-certificate.sh \
# $RUNNER_TEMP \
# ${{ secrets.KEYCHAIN_PASSWORD }} \
# ${{ secrets.APPLE_DEV_CERTIFICATE }} \
# ${{ secrets.APPLE_DEV_CERTIFICATE_PASSWORD }}

- name: Configure environment
run: |
Scripts/configure-environment.sh \
${{ secrets.APP_STORE_CONNECT_API_KEY }}
# - name: Configure environment
# run: |
# Scripts/configure-environment.sh \
# ${{ secrets.APP_STORE_CONNECT_API_KEY }}

- name: Archive the demo
run: make archive-demo-${{ matrix.platform }}
env:
TEAM_ID: ${{ secrets.TEAM_ID }}
KEY_ID: ${{ secrets.APP_STORE_CONNECT_KEY_ID }}
KEY_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_KEY_ISSUER_ID }}
TESTFLIGHT_GROUPS: ${{ vars.TESTFLIGHT_GROUPS }}
# - name: Archive the demo
# run: make archive-demo-${{ matrix.platform }}
# env:
# TEAM_ID: ${{ secrets.TEAM_ID }}
# KEY_ID: ${{ secrets.APP_STORE_CONNECT_KEY_ID }}
# KEY_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_KEY_ISSUER_ID }}
# TESTFLIGHT_GROUPS: ${{ vars.TESTFLIGHT_GROUPS }}

0 comments on commit 177f2f1

Please sign in to comment.