setup-edgedb
setup-edgedb copied to clipboard
How to install the most recent nightly version
When setting up edgedb, I use this config;
- name: Install EdgeDB
uses: edgedb/setup-edgedb@v1
with:
server-version: nightly
cli-version: nightly
though it doesn't always install the most recent build. The package index for nightly brings 3 different revisions;
{
"packages": [
{
"basename": "edgedb-cli",
"slot": null,
"name": "edgedb-cli",
"version": "1.0.0-beta.1+d20210305.ga681830f0",
"revision": "2021030500~nightly",
"architecture": "x86_64",
"installref": "/archive/linux-x86_64.nightly/edgedb-cli_1.0.0-beta.1+d20210305.ga681830f0_2021030500~nightly"
},
{
"basename": "edgedb-cli",
"slot": null,
"name": "edgedb-cli",
"version": "1.0.0-beta.1+d20210306.g6967c073b",
"revision": "2021030600~nightly",
"architecture": "x86_64",
"installref": "/archive/linux-x86_64.nightly/edgedb-cli_1.0.0-beta.1+d20210306.g6967c073b_2021030600~nightly"
},
{
"basename": "edgedb-cli",
"slot": null,
"name": "edgedb-cli",
"version": "1.0.0-beta.1+d20210307.g6967c073b",
"revision": "2021030700~nightly",
"architecture": "x86_64",
"installref": "/archive/linux-x86_64.nightly/edgedb-cli_1.0.0-beta.1+d20210307.g6967c073b_2021030700~nightly"
}
]
}
and I personally don't know why though setup-edgedb installs the least recent one (march 5). I was wondering whether there is an easy hack that I could use to install the most recent one. In this case, a fix that I was awaiting was fixed in march 6 but for it to be least recent one I guess I have to wait 2 days.