Skip to content

Commit

Permalink
fix: install setuptools (#52)
Browse files Browse the repository at this point in the history
* fix: install setuptools

* fix: debug files
  • Loading branch information
noam09 authored Sep 10, 2024
1 parent 291e863 commit 2e7c058
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ jobs:
draft: true
prerelease: false
- name: Output Release URL File
run: echo "${{ steps.create_release.outputs.upload_url }}" > release_url.txt
run: |
echo "${{ steps.create_release.outputs.upload_url }}" > release_url.txt
pwd
ls -alh
- name: Save Release URL File for publish
uses: actions/[email protected]
with:
Expand Down Expand Up @@ -89,6 +92,8 @@ jobs:
- name: Get Release File Name & Upload URL
id: get_release_info
run: |
pwd
ls -alh
echo ::set-output name=file_name::${REPOSITORY_NAME##*/}-${TAG_REF_NAME##*/v} # RepositoryName-v1.0.0
value=`cat release_url/release_url.txt`
echo ::set-output name=upload_url::$value
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile-py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ RUN mkdir -p /usr/src/app
RUN mkdir -p /output
WORKDIR /usr/src/app

RUN pip install --no-cache-dir setuptools

COPY telegramer /usr/src/app/telegramer
COPY setup.py /usr/src/app/setup.py
COPY LICENSE /usr/src/app/LICENSE
Expand Down

0 comments on commit 2e7c058

Please sign in to comment.