We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09a1b19 commit 3dc7e6fCopy full SHA for 3dc7e6f
.github/workflows/controller.yml
@@ -41,14 +41,12 @@ jobs:
41
toolchain: stable
42
43
- name: Run cargo build
44
- uses: actions-rs/cargo@v1
45
- with:
46
- command: build
47
- args: --target ${{ matrix.target }} ${{ matrix.args }}
+ run: cargo build --target ${{ matrix.target }} ${{ matrix.args }}
+ working-directory: operator
48
49
- name: rename binaries
50
run: |
51
- mv target/${{ matrix.target }}/release/controller${{ matrix.ext }} controller-${{ matrix.release_for }}${{ matrix.ext }}
+ mv operator/target/${{ matrix.target }}/release/controller${{ matrix.ext }} controller-${{ matrix.release_for }}${{ matrix.ext }}
52
53
- name: upload artifacts
54
uses: actions/upload-artifact@v4
0 commit comments