Skip to content

Commit

Permalink
Try to fix chmod failure
Browse files Browse the repository at this point in the history
  • Loading branch information
Pikachu920 committed Aug 16, 2024
1 parent 3dc25d3 commit 8f0e13d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,20 +47,20 @@ runs:
if: steps.cache-skript.outputs.cache-hit != 'true'
shell: bash
run: |
chmod +x ./gradlew
./gradlew quickTest
chmod +x ./skript/gradlew
./skript/gradlew quickTest
- name: Cache test image
uses: ScribeMD/docker-cache@0.5.0
id: cache-image
with:
# Remember to change the image tag in all places!
key: "test-image-3fafa20"
key: "test-image-3dc25d3"
- name: Pull test image
shell: bash
# Remember to change the image tag in all places!
run: "docker pull ghcr.io/skriptlang/skript-test-action:3fafa20"
run: "docker pull ghcr.io/skriptlang/skript-test-action:3dc25d3"
if: steps.cache-skript.outputs.cache-hit != 'true'
- name: Run tests
shell: bash
# Remember to change the image tag in all places!
run: "docker run -a -v /github/workspace:/github/workspace ghcr.io/skriptlang/skript-test-action:3fafa20"
run: "docker run -a -v /github/workspace/skript:/skript ghcr.io/skriptlang/skript-test-action:3dc25d3"

0 comments on commit 8f0e13d

Please sign in to comment.