Skip to content

Commit d886aae

Browse files
authored
Update build-and-deploy.yml (#41)
* Update build-and-deploy.yml * lowercase m to get it to activate * redo
1 parent 849e65d commit d886aae

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build-and-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ jobs:
4141
id: parse
4242
run: |
4343
echo "parsing ${{ matrix.added_modified }}"
44-
tool=$(echo "${{ matrix.added_modified }}" | cut -f2 -d "/")
45-
version=$(echo "${{ matrix.added_modified }}" | cut -f3 -d "/")
44+
tool=$(echo "${{ matrix.added_modified }}" | cut -f1 -d "/")
45+
version=$(echo "${{ matrix.added_modified }}" | cut -f2 -d "/")
4646
echo "found tool:version ${tool}:${version}"
4747
echo "tool=$tool" >> $GITHUB_OUTPUT
4848
echo "version=$version" >> $GITHUB_OUTPUT

irma/1.3.1-helper/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# building from staphb/irma as the base
22
FROM staphb/irma:1.3.1
33

4-
# Metadata
4+
# metadata
55
LABEL base.image="staphb/irma:1.3.1"
66
LABEL software="IRMA"
77
LABEL software.version="1.3.1"

mlst/2.33.1/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ LABEL maintainer.email="ines.mendes@theiagen.com"
1616
LABEL maintainer2="Curtis Kapsak"
1717
LABEL maintainer2.email="kapsakcj@gmail.com"
1818

19-
# install dependencies via apt; cleanup apt garbage
19+
# Install dependencies via apt; cleanup apt garbage
2020
# deps needed specifically for db download scripts: libfile-which-perl, curl, parallel
2121
RUN apt-get update && apt-get install -y --no-install-recommends \
2222
wget \
@@ -95,4 +95,4 @@ RUN datasets download genome accession ${GENBANK_ACCESSION} --filename ${GENBANK
9595
mlst ${GENBANK_ACCESSION}-download/ncbi_dataset/data/${GENBANK_ACCESSION}/${GENBANK_ACCESSION}.genomic.fna | tee mlst.${GENBANK_ACCESSION}.tsv && \
9696
echo && \
9797
echo "Checking for ST15199 in the mlst results now..." && \
98-
grep "15199" mlst.${GENBANK_ACCESSION}.tsv
98+
grep "15199" mlst.${GENBANK_ACCESSION}.tsv

0 commit comments

Comments
 (0)