We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dc60610 + 134b0b7 commit 364214aCopy full SHA for 364214a
.github/workflows/expo-ci-cd.yml
@@ -0,0 +1,29 @@
1
+name: React Native CI/CD
2
+
3
+permissions:
4
+ id-token: write
5
+ contents: read
6
7
+on:
8
+ workflow_dispatch:
9
+ inputs:
10
+ platform:
11
+ type: choice
12
+ description: "Platform to build"
13
+ default: "all"
14
+ options:
15
+ - android
16
+ - ios
17
+ - all
18
19
+jobs:
20
+ test-echo:
21
+ runs-on: ubuntu-latest
22
+ timeout-minutes: 5
23
+ steps:
24
+ - name: Echo message
25
+ run: |
26
+ echo "✅ Workflow dispatch is working!"
27
+ echo "Branch: ${{ github.ref }}"
28
+ echo "Triggered by: ${{ github.actor }}"
29
+ echo "Event: ${{ github.event_name }}"
0 commit comments