feat: fallback arm64 to x64 architecture for win32 platform #326
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: autofix.ci # Must be named this for autofix.ci to work | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 📥 Checkout | |
| uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4 | |
| - name: 🛠️ Setup Bun | |
| uses: ./ | |
| - name: 📦 Install Dependencies | |
| run: bun install | |
| - name: 🧹 Format | |
| run: | | |
| bun run format | |
| bun run build | |
| - name: 💾 Commit | |
| uses: autofix-ci/action@551dded8c6cc8a1054039c8bc0b8b48c51dfc6ef |