Skip to content

Commit

Permalink
push and attest the image
Browse files Browse the repository at this point in the history
  • Loading branch information
sauterp committed Feb 29, 2024
1 parent cda1b91 commit 17c0ed7
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions .github/workflows/sscs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,23 +26,28 @@ jobs:
- name: Build Docker image
run: make docker

# - name: Log in to Docker Hub
# uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Log in to Docker Hub
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Tag Docker Image
run: |
docker tag exoscale/csi-driver:latest exoscale/csi-driver-integ-test:sscs
# - name: Push Docker Image
# run: |
# docker push exoscale/csi-driver-integ-test:sscs
- name: Push Docker Image
run: |
docker push exoscale/csi-driver-integ-test:sscs
- uses: anchore/sbom-action/download-syft@v0

- name: scan the image
shell: bash
run: |
syft scan exoscale/csi-driver-integ-test:sscs
- name: attest the image
shell: bash
run: |
syft attest exoscale/csi-driver-integ-test:sscs

0 comments on commit 17c0ed7

Please sign in to comment.