Skip to content

Commit

Permalink
Add shell to action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Pikachu920 committed Aug 16, 2024
1 parent b33f60b commit 7467ef9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,17 @@ runs:
submodules: recursive
- name: Compute current Skript HEAD
id: skript-sha
shell: bash
run: echo "head_sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
- name: Cache Skript build
shell: bash
id: cache-skript
with:
path: build
key: "skript-${{ steps.skript-sha.head_sha }}"
- name: Build Skript
if: steps.cache-skript.outputs.cache-hit != 'true'
shell: bash
run: |
chmod +x ./gradlew
./gradlew quickTest
Expand Down

0 comments on commit 7467ef9

Please sign in to comment.