diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 63a3d873c..d1d8950e3 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -23,4 +23,19 @@ jobs: restore-keys: | ${{ runner.os }}-build-go-${{ hashFiles('**/go.sum') }} - name: Build - run: make build \ No newline at end of file + run: make build + - name: Store operator binary + uses: actions/upload-artifact@v3 + with: + name: elemental-operator + path: build/elemental-operator + - name: Store register binary + uses: actions/upload-artifact@v3 + with: + name: elemental-register + path: build/elemental-register + - name: Store support binary + uses: actions/upload-artifact@v3 + with: + name: elemental-support + path: build/elemental-support \ No newline at end of file