Skip to content

Commit

Permalink
Fix workflow syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
kylemclaren committed Jul 3, 2024
1 parent 38d6c83 commit 092a4f1
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,14 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and Push Cog Image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: replicate/setup-cog@v2
with:
install-cuda: false
cog-version: v0.9.12
- run: |
cog push ${{ env.REGISTRY }}/${{ env.IMAGE_NAME}}:latest --use-cuda-base-image false
uses: replicate/setup-cog@v2
with:
install-cuda: false
cog-version: v0.9.12
- run: |
cog push ${{ env.REGISTRY }}/${{ env.IMAGE_NAME}}:latest --use-cuda-base-image false
* name: Generate artifact attestation
- name: Generate artifact attestation
uses: actions/attest-build-provenance@v1
with:
subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME}}
Expand Down

0 comments on commit 092a4f1

Please sign in to comment.