Skip to content

Commit

Permalink
intial
Browse files Browse the repository at this point in the history
  • Loading branch information
katendejericho5 committed Feb 20, 2024
1 parent 22e5cac commit 7c18178
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/shorebird-patch.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Push Patches

on:
workflow_dispatch:

jobs:
push_patches:
name: Push Patches
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Setup Shorebird
uses: shorebirdtech/setup-shorebird@v0

# Authenticate with Shorebird using the CI token
- name: Authenticate with Shorebird
run: shorebird login:ci
env:
SHOREBIRD_TOKEN: ${{ secrets.SHOREBIRD_TOKEN }}

# Push patches for Android
- name: Push Patches for Android
# Set any additional options if needed, e.g., --flavor, --target
run: shorebird patch --force --flavor airqo -t lib/main.dart

# Push patches for iOS (if needed)
# - name: Push Patches for iOS
# run: shorebird patch ios

0 comments on commit 7c18178

Please sign in to comment.