File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 19
19
uses : actions/checkout@v4
20
20
- name : Install Poetry
21
21
uses : snok/install-poetry@v1
22
+ - name : Write VERSION file
23
+ run : echo ${{ github.event.release.tag_name }} > VERSION
22
24
- name : Update Version
23
25
run : poetry version ${{github.event.release.tag_name}}
24
26
- name : Login
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ COPY --from=prep /build/bowtie2/* /usr/local/bin/
16
16
COPY --from=prep /build/pigz-2.8/pigz /usr/local/bin/pigz
17
17
RUN curl -sSL https://install.python-poetry.org | python -
18
18
ENV PATH="/root/.local/bin:${PATH}"
19
- COPY pyproject.toml poetry.lock utils.py workflow.py ./
19
+ COPY pyproject.toml poetry.lock utils.py workflow.py VERSION* ./
20
20
RUN poetry export > requirements.txt
21
21
RUN pip install -r requirements.txt
22
22
You can’t perform that action at this time.
0 commit comments