edgedb / setup-edgedb

A GitHub Action to install EdgeDB and its CLI
MIT License
18 stars 5 forks source link

Action fails with 404 #35

Closed roris closed 10 months ago

roris commented 10 months ago

Hello. We're using this action in one of our github workflows. It fails with the following error:

Run edgedb/setup-edgedb@v1
Downloading edgedb-cli 3.4.0+160d07d - x64 from https://packages.edgedb.com/archive/x86_64-unknown-linux-musl/edgedb-cli-3.4.0+160d07d
Error: Unexpected HTTP response: 404

This is how we are running the action:

    steps:
      - uses: actions/checkout@v3

      - name: Setup EdgeDB
        uses: edgedb/setup-edgedb@v1
        with:
          server-dsn: edgedb://edgedb:edgedb@localhost:5656
elprans commented 10 months ago

This was due to a misconfiguration of the CloudFront distribution serving the packages. Should be fixed now. Sorry for the inconvenience!

roris commented 10 months ago

Thanks!