File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed
Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 5050jobs :
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
You can’t perform that action at this time.
0 commit comments