Skip to content

Commit 6b6a32c

Browse files
typicalsmcclaude
andcommitted
fix: add chmod +x gradlew in CI workflows
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 15cab3e commit 6b6a32c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
cache: gradle
2323

2424
- name: Build
25-
run: ./gradlew build
25+
run: chmod +x gradlew && ./gradlew build
2626

2727
- name: Upload artifact
2828
uses: actions/upload-artifact@v4

.github/workflows/release-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
echo "Dev version: ${VERSION}"
3838
3939
- name: Build
40-
run: ./gradlew build -PoverrideVersion=${{ steps.version.outputs.version }}
40+
run: chmod +x gradlew && ./gradlew build -PoverrideVersion=${{ steps.version.outputs.version }}
4141

4242
- name: Create pre-release
4343
uses: softprops/action-gh-release@v2

0 commit comments

Comments
 (0)