Skip to content

Commit

Permalink
UPDATE: fix pasto in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
fileformat committed Mar 12, 2024
1 parent dbad244 commit 9827694
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 18 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ar21dimensions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
run: |
curl \
--location \
--verbose \
https://github.com/FileFormatInfo/fflint/releases/latest/download/fflint_Linux_arm64.tar.gz \
| tar -xz - fflint
--silent \
https://github.com/FileFormatInfo/fflint/releases/latest/download/fflint_Linux_x86_64.tar.gz \
| tar -xz fflint
- name: Check ar21 dimensions
run: |
# NOTE: some of the disabled checks are still required, but caught by other CI jobs
fflint svg \
./fflint svg \
--foreign=true \
--height=60 \
--images=any \
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/icondimensions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
run: |
curl \
--location \
--verbose \
https://github.com/FileFormatInfo/fflint/releases/latest/download/fflint_Linux_arm64.tar.gz \
| tar -xz - fflint
--silent \
https://github.com/FileFormatInfo/fflint/releases/latest/download/fflint_Linux_x86_64.tar.gz \
| tar -xz fflint
- name: Check icon dimensions
run: |
# NOTE: some of the disabled checks are still required, but caught by other CI jobs
fflint svg \
./fflint svg \
--foreign=true \
--height=64 \
--images=any \
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/imagecheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@ jobs:
run: |
curl \
--location \
--verbose \
https://github.com/FileFormatInfo/fflint/releases/latest/download/fflint_Linux_arm64.tar.gz \
| tar -xz - fflint
--silent \
https://github.com/FileFormatInfo/fflint/releases/latest/download/fflint_Linux_x86_64.tar.gz \
| tar -xz fflint
- name: Check images
run: bin/chksvgimage.sh
run: |
PATH=.:$PATH bin/chksvgimage.sh
10 changes: 5 additions & 5 deletions .github/workflows/metacheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
run: |
curl \
--location \
--verbose \
https://github.com/FileFormatInfo/fflint/releases/latest/download/fflint_Linux_arm64.tar.gz \
| tar -xz - fflint
--silent \
https://github.com/FileFormatInfo/fflint/releases/latest/download/fflint_Linux_x86_64.tar.gz \
| tar -xz fflint
- name: Check metadata
run: bin/chkmeta.sh

run: |
PATH=.:$PATH bin/chkmeta.sh
2 changes: 1 addition & 1 deletion .github/workflows/namecheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ jobs:
run: pip install python-frontmatter

- name: Check names
run: bin/chksvgname.py --verbose
run: bin/chksvgname.py

0 comments on commit 9827694

Please sign in to comment.