From 84d3a33eef93d84b70d2c66379335eda0393a4e5 Mon Sep 17 00:00:00 2001 From: brooke Date: Mon, 17 Mar 2025 19:39:05 -0400 Subject: [PATCH] update --- .github/workflows/container.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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