Skip to content

Commit

Permalink
fix: vector installation script (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
wrn14897 committed Nov 2, 2023
1 parent 516c858 commit ef0fb17
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ jobs:
run: sudo apt-get install --yes curl bc
- name: Install vector
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.vector.dev | bash -s -- -y
~/.vector/bin/vector --version
ln -s ~/.vector/bin/vector /usr/local/bin/vector
mkdir -p vector
curl -sSfL --proto '=https' --tlsv1.2 https://packages.timber.io/vector/0.33.1/vector-0.33.1-x86_64-unknown-linux-musl.tar.gz | tar xzf - -C vector --strip-components=2
cp ./vector/bin/vector /usr/local/bin/vector
vector --version
- name: Run lint + type check
run: make ci-lint
integration:
Expand Down

0 comments on commit ef0fb17

Please sign in to comment.