workflow fixes

- checkout@latest is not allowed, reverted back to checkout@v4
- set rust to use the stable release
This commit is contained in:
Quinn
2025-04-08 00:06:20 +02:00
committed by Quinn
parent ec06481a36
commit d6409f5473
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ jobs:
env: env:
OUT: ${{github.workspace}}/mcaselector-lite-${{matrix.arch}}-${{github.event.release.tag_name || github.event.inputs.release_tag}}.zip OUT: ${{github.workspace}}/mcaselector-lite-${{matrix.arch}}-${{github.event.release.tag_name || github.event.inputs.release_tag}}.zip
steps: steps:
- uses: actions/checkout@latest - uses: actions/checkout@v4
- run: make compile ARCH=${{matrix.arch}} - run: make compile ARCH=${{matrix.arch}}
- name: compress binary information - name: compress binary information
run: | run: |

View File

@@ -20,6 +20,6 @@ jobs:
- linux-x86_64 - linux-x86_64
- win-x86_64 - win-x86_64
steps: steps:
- uses: actions/checkout@latest - uses: actions/checkout@v4
- run: make compile ARCH=${{matrix.arch}} - run: make compile ARCH=${{matrix.arch}}
# TODO: add linting checking here # TODO: add linting checking here