We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84eca6e commit 6dad955Copy full SHA for 6dad955
.github/workflows/publish.yml
@@ -17,6 +17,8 @@ jobs:
17
steps:
18
- uses: actions/checkout@v2
19
- uses: snok/install-poetry@v1
20
+ - name: Write VERSION file
21
+ run: echo ${{ github.event.release.tag_name }} > VERSION
22
- name: Update Version
23
run: poetry version ${{github.event.release.tag_name}}
24
- uses: docker/login-action@v1
Dockerfile
@@ -16,7 +16,7 @@ RUN chmod ugo+x /opt/fastqc/fastqc && \
16
ln -fs /opt/fastqc/fastqc /usr/local/bin/fastqc
RUN curl -sSL https://install.python-poetry.org | python -
ENV PATH="/root/.local/bin:${PATH}"
-COPY pyproject.toml poetry.lock workflow.py ./
+COPY pyproject.toml poetry.lock workflow.py VERSION* ./
RUN poetry install
RUN poetry export > requirements.txt
RUN pip install -r requirements.txt
0 commit comments