diff --git a/.github/workflows/build-tool.yml b/.github/workflows/build-tool.yml index 730584c..21f0670 100644 --- a/.github/workflows/build-tool.yml +++ b/.github/workflows/build-tool.yml @@ -6,6 +6,7 @@ on: paths: - '**.rs' - 'builder/**.toml' + - '.github/**' pull_request: branches: [ "main" ] paths: @@ -24,11 +25,10 @@ jobs: with: sparse-checkout: | builder - - run: cd builder && cargo build --release --verbose + - run: cd builder && cargo build --release - uses: actions/upload-artifact@v4 with: - name: builder-bin + name: builder path: builder/target/release/builder compression-level: 0 overwrite: true - - run: echo 'Artifact ID is ${{ steps.artifact-upload-step.outputs.artifact-id }}'