Skip to content

Commit

Permalink
test: use correct collie version when invoking install scripts
Browse files Browse the repository at this point in the history
sudo -E preserves existing environment
  • Loading branch information
JohannesRudolph committed Aug 28, 2024
1 parent ddb61d8 commit 694288a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
env:
COLLIE_VERSION: ${{ github.event.release.tag_name }}
run: |
curl -sf -L https://raw.githubusercontent.com/meshcloud/collie-cli/main/install.sh | sudo bash
curl -sf -L https://raw.githubusercontent.com/meshcloud/collie-cli/main/install.sh | sudo -E bash
collie info
./test/e2e.sh
e2e-macos:
Expand All @@ -128,6 +128,6 @@ jobs:
env:
COLLIE_VERSION: ${{ github.event.release.tag_name }}
run: |
curl -sf -L https://raw.githubusercontent.com/meshcloud/collie-cli/main/install.sh | sudo bash
curl -sf -L https://raw.githubusercontent.com/meshcloud/collie-cli/main/install.sh | sudo -E bash
collie info
./test/e2e.sh
3 changes: 0 additions & 3 deletions test/e2e.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,3 @@ echo "Testing outputs"
collie foundation tree
collie kit tree
collie compliance tree

echo "Testing documentation"
collie foundation docs --build

0 comments on commit 694288a

Please sign in to comment.