Skip to content

Commit

Permalink
CI: Fix executable flag for cached mill script (#3912)
Browse files Browse the repository at this point in the history
Pull request: #3912
  • Loading branch information
lefou authored Nov 5, 2024
1 parent 68269b8 commit c51eaab
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/publish-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ jobs:
with:
path: .

# Need to fix cached artifact file permissions because github actions screws it up
# https://github.com/actions/upload-artifact/issues/38
- name: chmod executable
run: "chmod +x ./mill"

- uses: coursier/cache-action@v6

- uses: actions/setup-java@v4
Expand All @@ -91,6 +96,11 @@ jobs:
with:
path: .

# Need to fix cached artifact file permissions because github actions screws it up
# https://github.com/actions/upload-artifact/issues/38
- name: chmod executable
run: "chmod +x ./mill"

- uses: coursier/cache-action@v6

- uses: actions/setup-java@v4
Expand Down

0 comments on commit c51eaab

Please sign in to comment.