This commit is contained in:
brooke 2025-03-17 19:39:05 -04:00
parent 6848538fd6
commit 84d3a33eef
2 changed files with 2 additions and 2 deletions

View file

@ -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 }}

View file

@ -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