diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 16a0910..a21bad3 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -5,7 +5,7 @@ on: version: description: "Enter the version to build" required: true - default: "v0.1.0" + default: "0.1.0" env: GITHUB_TOKEN: ${{ secrets.PACKAGE_TOKEN }} diff --git a/Dockerfile b/Dockerfile index 6e7e360..f69d64d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN apt update && \ apt install -y curl RUN echo "Installing lapdev package from GitHub." && \ - curl -sL -o /tmp/lapdev_${VERSION}-1_amd64.deb https://github.com/lapce/lapdev/releases/download/v${VERSION}/lapdev_${VERSION}-1_amd64.deb && \ + curl -sL -o /tmp/lapdev_${VERSION}-1_amd64.deb https://fung.uy/mycosystems/lapdev/releases/download/v${VERSION}/lapdev_${VERSION}-1_amd64.deb && \ sudo apt install -y /tmp/lapdev_${VERSION}-1_amd64.deb RUN apt-get clean