File tree 4 files changed +1475
-1143
lines changed
4 files changed +1475
-1143
lines changed Original file line number Diff line number Diff line change 62
62
run : npm i semantic-release@^23.0.0 conventional-changelog-conventionalcommits@^7.0.0
63
63
- name : Release
64
64
env :
65
- GITHUB_USERNAME : ${{ secrets.GH_USERNAME }}
66
- GITHUB_TOKEN : ${{ secrets.GH_TOKEN }}
65
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
67
66
run : npx semantic-release
Original file line number Diff line number Diff line change @@ -5,12 +5,13 @@ COPY --from=ghcr.io/virtool/workflow-tools:2.0.1 /opt/hmmer /opt/hmmer
5
5
COPY --from=ghcr.io/virtool/workflow-tools:2.0.1 /usr/local/bin/pigz /usr/local/bin/
6
6
COPY --from=ghcr.io/virtool/workflow-tools:2.0.1 /usr/local/bin/skewer /usr/local/bin/
7
7
RUN apt-get update && apt-get install -y --no-install-recommends default-jre
8
- RUN curl -sSL https://install.python-poetry.org | python -
8
+ RUN curl -sSL https://install.python-poetry.org | python3 -
9
9
ENV PATH="${PATH}:/root/.local/bin:/opt/hmmer/bin:/opt/fastqc"
10
10
COPY vendor/skewer /usr/local/bin/skewer
11
- COPY poetry.lock pyproject.toml ./
12
- RUN poetry install
11
+ COPY poetry.lock pyproject.toml README.md ./
12
+ RUN poetry install --no-root
13
13
COPY example/ example/
14
14
COPY tests/ tests/
15
15
COPY virtool_workflow/ virtool_workflow/
16
+ RUN poetry install --only-root
16
17
COPY workflow.py .
You can’t perform that action at this time.
0 commit comments