Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/workflows/fly-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,16 @@ jobs:
echo "wrote $(wc -l < $RUNNER_TEMP/secrets.env) entries"

- name: Setup flyctl
uses: superfly/flyctl-actions/setup-flyctl@master
# superfly/flyctl-actions/setup-flyctl@master left flyctl off
# the runner PATH for the next step (cmd-not-found, exit 127).
# Install manually + append to GITHUB_PATH so every subsequent
# step sees the binary.
run: |
curl -L https://fly.io/install.sh | sh
echo "$HOME/.fly/bin" >> "$GITHUB_PATH"
# Verify in this same step (uses absolute path because the
# PATH change only takes effect for later steps).
"$HOME/.fly/bin/flyctl" version

- name: Ensure Fly app exists
env:
Expand Down