File tree Expand file tree Collapse file tree 2 files changed +15
-13
lines changed
Expand file tree Collapse file tree 2 files changed +15
-13
lines changed Original file line number Diff line number Diff line change 4646 echo "changed=true" >> $GITHUB_OUTPUT
4747 fi
4848
49+ - name : Install Tofu (Terraform)
50+ if : steps.check.outputs.changed == 'true'
51+ run : |
52+ sudo apt-get update
53+ sudo apt-get install -y wget unzip
54+ LATEST=https://github.com/opentofu/opentofu/releases/download/v1.10.5/tofu_1.10.5_linux_amd64.zip
55+ cd /tmp || exit 1
56+ curl -LO "$LATEST"
57+ unzip -o tofu_*_linux_amd64.zip
58+ sudo mv tofu /usr/local/bin/
59+ rm tofu_*_linux_amd64.zip
60+ echo "OpenTofu version: $(tofu version)"
61+
4962 - name : Setup Node.js
5063 if : steps.check.outputs.changed == 'true'
5164 uses : actions/setup-node@v4
6881 with :
6982 project_id : compass-130ba
7083
71- - name : Install Tofu (Terraform)
72- run : |
73- sudo apt-get update
74- sudo apt-get install -y wget unzip
75- LATEST=https://github.com/opentofu/opentofu/releases/download/v1.10.5/tofu_1.10.5_linux_amd64.zip
76- cd /tmp || exit 1
77- curl -LO "$LATEST"
78- unzip -o tofu_*_linux_amd64.zip
79- sudo mv tofu /usr/local/bin/
80- rm tofu_*_linux_amd64.zip
81- info "OpenTofu version: $(tofu version)"
82-
8384 - name : Configure Docker for Artifact Registry
85+ if : steps.check.outputs.changed == 'true'
8486 run : |
8587 gcloud auth configure-docker us-west1-docker.pkg.dev --quiet
8688
Original file line number Diff line number Diff line change 11{
22 "name" : " @compass/api" ,
33 "description" : " Backend API endpoints" ,
4- "version" : " 1.0.3 " ,
4+ "version" : " 1.0.4 " ,
55 "private" : true ,
66 "scripts" : {
77 "watch:serve" : " tsx watch src/serve.ts" ,
You can’t perform that action at this time.
0 commit comments