Skip to content

Commit

Permalink
Fix silly typos
Browse files Browse the repository at this point in the history
Signed-off-by: nythepegasus <[email protected]>
  • Loading branch information
nythepegasus authored Nov 13, 2024
1 parent c75a6c7 commit c662e1f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ jobs:
uses: actions/checkout@v4
- name: Lint servers.json
run: |
if jq empty servers.json > /dev/null 2>&1; then
if ! jq empty servers.json > /dev/null 2>&1; then
echo "servers.json is valid"
else
echo "Invalid JSON file detected in servers.json"
exit 1
- name: Setup Pages
uses: actions/configure-pages@v4
uses: actions/configure-pages@v5
- name: Generate hash file
run: |
sha256sum servers.json | cut -d ' ' -f1 | cut -c1-8 > servers.json.hash
Expand All @@ -55,4 +55,4 @@ jobs:
path: '.'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v4

0 comments on commit c662e1f

Please sign in to comment.