Skip to content

Commit d775655

Browse files
committed
comment build steps
1 parent a22909c commit d775655

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/eas-build.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ on:
5050
jobs:
5151
Build:
5252
runs-on: ${{ matrix.os }}
53+
permissions:
54+
contents: write
5355
environment: app-${{ inputs.environment }}
5456
strategy:
5557
fail-fast: false
@@ -88,13 +90,15 @@ jobs:
8890
- name: Update version in package.json
8991
if: inputs.new-version
9092
run: |
91-
pnpm version ${{ inputs.new-version }}
93+
git config --global user.name "github-actions[bot]"
94+
git config --global user.email "github-actions[bot]@users.noreply.github.com"
95+
pnpm version ${{ inputs.new-version }} -m "chore: set app version to ${{ inputs.new-version }}"
9296
93-
- name: ⚙️ Run Prebuild
94-
run: pnpm prebuild:${{ inputs.environment }}
97+
# - name: ⚙️ Run Prebuild
98+
# run: pnpm prebuild:${{ inputs.environment }}
9599

96-
- name: 📱 Run Build for ${{ matrix.platform }}
97-
run: pnpm build:${{ inputs.environment }}:${{ matrix.platform }} --non-interactive --no-wait --message "Build ${{ inputs.environment }} for ${{ matrix.platform }}" --local
100+
# - name: 📱 Run Build for ${{ matrix.platform }}
101+
# run: pnpm build:${{ inputs.environment }}:${{ matrix.platform }} --non-interactive --no-wait --message "Build ${{ inputs.environment }} for ${{ matrix.platform }}" --local
98102

99103
- name: 📦 Push changes to repository
100104
if: inputs.new-version

0 commit comments

Comments
 (0)