Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ jobs:
- name: Build
run: make build
- name: Store operator binary
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: elemental-operator
path: build/elemental-operator
overwrite: true
- name: Store register binary
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: elemental-register
path: build/elemental-register
overwrite: true
- name: Store support binary
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: elemental-support
path: build/elemental-support
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ jobs:
- name: e2e tests
run: LOCAL_BUILD=true make e2e-tests
- name: Upload chart
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: chart
path: build/*.tgz
overwrite: true
- name: Archive artifacts
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ci-artifacts
path: _artifacts
Expand Down
Loading