-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Patrick Mirwald
committed
Aug 14, 2024
1 parent
b613fcd
commit bc77632
Showing
1 changed file
with
6 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,19 +20,17 @@ jobs: | |
- 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/octo | ||
tar -xzf OctopusTools.9.1.7.linux-x64.tar.gz -C $HOME/octo | ||
echo "$HOME/octo" >> $GITHUB_PATH | ||
export GITHUB_PATH=$HOME/octo:$GITHUB_PATH | ||
echo 11111 | ||
echo $GITHUB_PATH | ||
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 | ||
echo 1111 | ||
octo --version | ||
which octo | ||
- name: Download and Install Octo CLI 2 | ||
run: | | ||
echo 2222 | ||
echo $GITHUB_PATH | ||
which octo | ||
octo --version | ||
which octo | ||
# - name: Cache | ||
# uses: gradle/[email protected] | ||
# - name: Build | ||
|