Skip to content

Commit

Permalink
feat: include workflow version in image
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcurts authored Feb 12, 2024
1 parent 128605d commit d0bde7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
uses: actions/checkout@v4
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Write VERSION file
run: echo ${{ github.event.release.tag_name }} > VERSION
- name: Update Version
run: poetry version ${{github.event.release.tag_name}}
- name: Login
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ COPY --from=prep /build/bowtie2/* /usr/local/bin/
COPY --from=prep /build/pigz-2.8/pigz /usr/local/bin/pigz
RUN curl -sSL https://install.python-poetry.org | python -
ENV PATH="/root/.local/bin:${PATH}"
COPY pyproject.toml poetry.lock utils.py workflow.py ./
COPY pyproject.toml poetry.lock utils.py workflow.py VERSION* ./
RUN poetry export > requirements.txt
RUN pip install -r requirements.txt

Expand Down

0 comments on commit d0bde7e

Please sign in to comment.