Skip to content

Commit b850a4c

Browse files
authored
ci: don't use virtool-bot
1 parent 04c6f16 commit b850a4c

File tree

4 files changed

+1475
-1143
lines changed

4 files changed

+1475
-1143
lines changed

.github/workflows/ci.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,5 @@ jobs:
6262
run: npm i semantic-release@^23.0.0 conventional-changelog-conventionalcommits@^7.0.0
6363
- name: Release
6464
env:
65-
GITHUB_USERNAME: ${{ secrets.GH_USERNAME }}
66-
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
65+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6766
run: npx semantic-release

Dockerfile

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@ COPY --from=ghcr.io/virtool/workflow-tools:2.0.1 /opt/hmmer /opt/hmmer
55
COPY --from=ghcr.io/virtool/workflow-tools:2.0.1 /usr/local/bin/pigz /usr/local/bin/
66
COPY --from=ghcr.io/virtool/workflow-tools:2.0.1 /usr/local/bin/skewer /usr/local/bin/
77
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 -
99
ENV PATH="${PATH}:/root/.local/bin:/opt/hmmer/bin:/opt/fastqc"
1010
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
1313
COPY example/ example/
1414
COPY tests/ tests/
1515
COPY virtool_workflow/ virtool_workflow/
16+
RUN poetry install --only-root
1617
COPY workflow.py .

0 commit comments

Comments
 (0)