Skip to content

Commit

Permalink
wip(ci): debug octo not found
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Mirwald committed Aug 14, 2024
1 parent e93553d commit e2fad8e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,20 @@ jobs:
with:
# needed for FirstCommitHashTaskTest
fetch-depth: 0
- name: Cache
uses: gradle/[email protected]
- name: Download and Install Octo CLI
run: |
wget https://github.com/OctopusDeploy/OctopusCLI/releases/download/v9.1.7/OctopusTools.9.1.7.linux-x64.tar.gz
mkdir -p $HOME/.local/bin
tar -xzf OctopusTools.9.1.7.linux-x64.tar.gz -C $HOME/.local/bin
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Cache
uses: gradle/[email protected]
- name: Build
run: ./gradlew build
- name: Validate
run: ./gradlew check validatePlugins --continue
- name: Integration Test
run: ./gradlew integrationTest
run: |
echo $GITHUB_PATH
octo --version
./gradlew integrationTest

0 comments on commit e2fad8e

Please sign in to comment.