Skip to content

Commit

Permalink
CI: Fix executable flag for cached mill script
Browse files Browse the repository at this point in the history
  • Loading branch information
lefou committed Nov 5, 2024
1 parent 68269b8 commit d18dad6
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 d18dad6

Please sign in to comment.