Skip to content
Merged
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Show tags
run: |
echo "Tags generated by metadata-action:\n"
for tag in ${{ steps.metadata.output.tags }}; do
for tag in ${{ steps.meta.output.tags }}; do
echo $tag
done

Expand All @@ -57,7 +57,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push
- name: Build and push latest
uses: docker/build-push-action@v4
with:
context: .
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ COPY . .
# upgrade pip and install wheel
RUN pip install --upgrade pip && pip install wheel
# install silverback
RUN pip wheel . --wheel-dir=/wheels
RUN pip wheel . --wheel-dir=/wheels --no-deps

# Install from wheels
FROM ghcr.io/apeworx/ape:${BASE_APE_IMAGE_TAG:-latest}
Expand All @@ -22,7 +22,7 @@ RUN pip install --upgrade pip \
--no-cache-dir --find-links=/wheels \
'taskiq-sqs>=0.0.11' \
'taskiq-redis>=1.0.2,<2' \
silverback
/wheels/silverback-*.whl

USER harambe

Expand Down
Loading