Skip to content

Commit

Permalink
```ci: standardize github workflow to use lowercase loader names
Browse files Browse the repository at this point in the history
Update GitHub Actions workflows to specify 'forge' and 'fabric' loaders in lowercase
for consistency and to avoid potential case-sensitive issues on different operating
environments. Affected workflows include 'build.yml' and 'build-pr.yml'.
```
  • Loading branch information
cnlimiter committed Aug 19, 2024
1 parent cbe54cd commit 475617f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
loader: [ 'Forge', 'Fabric' ]
loader: [ 'forge', 'fabric' ]

steps:
- name: 'Checkout repository'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
loader: [ 'Forge', 'Fabric' ]
loader: [ 'forge', 'fabric' ]

steps:
- name: 'Checkout repository'
Expand Down

0 comments on commit 475617f

Please sign in to comment.