Skip to content

Commit

Permalink
chore: install porter manually
Browse files Browse the repository at this point in the history
  • Loading branch information
jose-fully-ported authored Oct 27, 2023
1 parent 4a328fe commit 77262af
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/porter_stack_cowsay.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,16 @@ jobs:
- name: Set Github tag
id: vars
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
# - name: Install porter
# uses: porter-dev/[email protected]
- name: Install porter
uses: porter-dev/[email protected]
run: |
curl -L https://github.com/porter-dev/porter/releases/download/v0.52.15-upcoming/porter_v0.52.145-upcoming_Linux_x86_64.zip --output porter.zip
unzip -a porter.zip
rm porter.zip
chmod +x ./porter
sudo mv ./porter /usr/local/bin/porter
command -v porter >/dev/null 2>&1 || { echo "[ERROR] There was an error installing the Porter CLI. Please try again." >&2; exit 1; }
- name: Deploy stack
timeout-minutes: 30
run: |
Expand Down

0 comments on commit 77262af

Please sign in to comment.