Skip to content

Commit

Permalink
fix: operator of if expression in gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
EATSTEAK committed Aug 9, 2024
1 parent 36923ab commit a78c118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/astro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
uses: actions/configure-pages@v5
- name: Setup supportedArchitectures
run: |
if [ "${{ steps.detect-package-manager.outputs.manager }}" -eq "yarn" ]; then
if [ "${{ steps.detect-package-manager.outputs.manager }}" == "yarn" ]; then
yarn config set supportedArchitectures.os linux
yarn config set supportedArchitectures.cpu x64
yarn config set supportedArchitectures.libc glibc
Expand Down

0 comments on commit a78c118

Please sign in to comment.