File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77jobs :
88 create-droplet :
99 name : Create and provision droplet
10- runs-on : ubuntu-20 .04
10+ runs-on : ubuntu-24 .04
1111 outputs :
1212 IPV4 : ${{ steps.save.outputs.IPV4 }}
1313 env :
@@ -21,13 +21,13 @@ jobs:
2121 token : ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
2222 - id : create
2323 name : Create droplet
24- run : doctl compute droplet create --enable-monitoring --image ubuntu-20 -04-x64 --size s-4vcpu-8gb --region nyc3 --ssh-keys "${SSH_FINGERPRINT}" --tag-name labs --user-data-file ./cloud-config.yml --wait "geosearch-${GITHUB_RUN_ID}"
24+ run : doctl compute droplet create --enable-monitoring --image ubuntu-24 -04-x64 --size s-4vcpu-8gb --region nyc3 --ssh-keys "${SSH_FINGERPRINT}" --tag-name labs --user-data-file ./cloud-config.yml --wait "geosearch-${GITHUB_RUN_ID}"
2525 - id : save
2626 name : Save IPv4
2727 run : echo "::set-output name=IPV4::$(doctl compute droplet get "geosearch-${GITHUB_RUN_ID}" --template "{{- .PublicIPv4 -}}")"
2828 healthcheck :
2929 name : Wait for healthcheck to pass
30- runs-on : ubuntu-20 .04
30+ runs-on : ubuntu-24 .04
3131 needs : create-droplet
3232 env :
3333 IPV4 : ${{needs.create-droplet.outputs.IPV4}}
You can’t perform that action at this time.
0 commit comments