Skip to content

Commit

Permalink
Fixed taxit --version
Browse files Browse the repository at this point in the history
  • Loading branch information
crosenth committed Aug 13, 2024
1 parent f813604 commit 314d2b0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ on:
pull_request:
branches:
- "master"
schedule:
- cron: '0 6 15 * *' # 15th of each month at 6am

env:
REGISTRY: ghcr.io
Expand Down Expand Up @@ -65,6 +67,8 @@ jobs:
id: build-and-push
uses: docker/build-push-action@v6
with:
annotations: ${{ steps.meta.outputs.annotations }}
build-args: VERSION=${{ steps.meta.outputs.version }}
cache-from: type=gha
cache-to: type=gha,mode=max
labels: ${{ steps.meta.outputs.labels }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM python:3.11-slim-bullseye

ARG VERSION=
ENV PIP_ROOT_USER_ACTION=ignore TAXTASTIC_VERSION=$VERSION
ENV PIP_ROOT_USER_ACTION=ignore TAXTASTIC_VERSION=${VERSION#v}

RUN apt-get -y update && apt-get upgrade -y && apt-get install -y unzip wget

Expand Down

0 comments on commit 314d2b0

Please sign in to comment.