Skip to content

Commit f575550

Browse files
committed
Bug fix
Signed-off-by: Prabhu Subramanian <[email protected]>
1 parent d7249c2 commit f575550

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
id: prep
7373
if: startsWith(github.ref, 'refs/tags/')
7474
run: |
75-
poetry install --no-cache --without dev
75+
poetry install --no-cache --all-groups --all-extras
7676
toml_version=$(echo "v"$(poetry version -s))
7777
if [[ $toml_version != $(echo $GITHUB_REF | cut -d / -f 3) ]]; then
7878
echo "TOML version does not match tag."

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ RUN microdnf install -y make gcc ncurses \
3535
COPY . /opt/blint
3636
RUN cd /opt/blint \
3737
&& poetry config virtualenvs.create false \
38-
&& poetry install --no-cache --without dev \
38+
&& poetry install --no-cache --all-groups --all-extras \
3939
&& chmod a-w -R /opt \
4040
&& microdnf remove make gcc -y \
4141
&& microdnf clean all

0 commit comments

Comments
 (0)