Skip to content

Commit

Permalink
Create shorebird-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
0niel committed Jan 28, 2025
1 parent 0e4378e commit aea68dd
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/shorebird-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Shorebird Release

on:
workflow_dispatch:

env:
SHOREBIRD_TOKEN: ${{ secrets.SHOREBIRD_TOKEN }}

jobs:
release:
defaults:
run:
shell: bash

runs-on: ubuntu-latest

steps:
- name: 📚 Git Checkout
uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: 0

- name: 🐦 Setup Shorebird
uses: shorebirdtech/setup-shorebird@v1
with:
cache: true

- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'

- name: 🚀 Shorebird Release (Android)
uses: shorebirdtech/shorebird-release@v0
with:
platform: android

- name: 🚀 Shorebird Release (iOS)
uses: shorebirdtech/shorebird-release@v0
with:
platform: ios

0 comments on commit aea68dd

Please sign in to comment.