Skip to content

Commit

Permalink
archive
Browse files Browse the repository at this point in the history
  • Loading branch information
cooktheryan committed Dec 18, 2023
1 parent e9991a2 commit 9262ae6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ jobs:
- name: Build operator container
run: make docker-build OPERATOR_IMAGE=${OPERATOR_IMAGE}

- name: Export container image
run: docker save -o /tmp/operator.tar ${OPERATOR_IMAGE}
- name: Export container image as a tar file
run: docker save ${OPERATOR_IMAGE} -o operator.tar

- name: Save container as artifact
uses: actions/upload-artifact@v1
- name: archive operator container
uses: actions/upload-artifact@v2
with:
name: signer-operator
path: /tmp/operator.tar
name: operator
path: operator.tar

0 comments on commit 9262ae6

Please sign in to comment.