Skip to content
This repository has been archived by the owner on Jun 14, 2024. It is now read-only.

Commit

Permalink
ci: Install zsh
Browse files Browse the repository at this point in the history
Really need that brace glob
  • Loading branch information
null2264 committed Nov 18, 2023
1 parent 1aa3392 commit 332cfca
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
18 changes: 11 additions & 7 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
name: "Setup environment"
description: "Set up Java environment"
name: Setup environment
description: Set up Java environment
runs:
using: "composite"
using: composite
steps:
- name: "Validate gradle"
- name: Validate Gradle
uses: gradle/wrapper-validation-action@v1
- name: "Setup JDK"
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: 17
- shell: bash
run: chmod +x ./gradlew
- name: Making sure gradlew is executable
shell: bash
run: chmod +x ./gradlew
- name: Install zsh
shell: bash
run: sudo apt-get update; sudo apt-get install zsh
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Build LibreExpFix
run: ./gradlew build
- name: Move needed jar files
shell: bash
shell: zsh {0}
run: mkdir jars && cp versions/*/build/libs/*-(fabric|forge|neoforge).jar jars/
- name: Upload build folder
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 332cfca

Please sign in to comment.