Skip to content

Commit

Permalink
Update GHA QG workflow example
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Nov 29, 2023
1 parent d14984e commit 897b338
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/qg-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@ jobs:

- name: Set up Kotlin
run: |
echo "$PATH"
kotlinc -version
curl -L https://github.com/JetBrains/kotlin/releases/download/v$KOTLIN_VERSION/kotlin-compiler-$KOTLIN_VERSION.zip -o /tmp/kotlin-compiler.zip
curl -L "https://github.com/JetBrains/kotlin/releases/download/v$KOTLIN_VERSION/kotlin-compiler-$KOTLIN_VERSION.zip" -o /tmp/kotlin-compiler.zip
unzip /tmp/kotlin-compiler.zip -d /opt
export PATH=$PATH:/opt/kotlinc/bin
export PATH="$PATH:/opt/kotlinc/bin"
echo "$PATH"
kotlinc -version
- name: Test
Expand Down

0 comments on commit 897b338

Please sign in to comment.