We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7332acc commit 2be7ef8Copy full SHA for 2be7ef8
.github/workflows/dogfood.yaml
@@ -57,14 +57,13 @@ jobs:
57
- name: Get short commit SHA
58
id: vars
59
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
60
- - name: "Install latest Coder"
+ - name: "Get latest Coder binary from the server"
61
run: |
62
- curl -L https://coder.com/install.sh | sh
63
- # env:
64
- # VERSION: 0.x
+ curl -fsSL "https://dev.coder.com/bin/coder-linux-amd64" -o "./coder"
+ chmod +x "./coder"
65
- name: "Push template"
66
67
- coder templates push $CODER_TEMPLATE_NAME --directory $CODER_TEMPLATE_DIR --yes --name=$CODER_TEMPLATE_VERSION
+ ./coder templates push $CODER_TEMPLATE_NAME --directory $CODER_TEMPLATE_DIR --yes --name=$CODER_TEMPLATE_VERSION
68
env:
69
# Consumed by Coder CLI
70
CODER_URL: https://dev.coder.com
0 commit comments