Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kokal33 committed Aug 24, 2023
1 parent 205255d commit 75239ff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- '*'

jobs:
build_and_push:
deploy_image:
runs-on: ubuntu-latest

steps:
Expand All @@ -30,9 +30,9 @@ jobs:
- name: Build and tag Docker image
run: |
echo "Building Docker image..."
docker build . -t public.ecr.aws/b3c4u5n1/filecoin-core-api:${{ github.ref_name }}"
docker build . -t "public.ecr.aws/b3c4u5n1/filecoin-core-api:${{ github.ref_name }}"
- name: Push Docker image to ECR
run: |
echo "Pushing Docker image to ECR..."
docker push public.ecr.aws/b3c4u5n1/filecoin-core-api:${{ github.ref_name }}"
docker push "public.ecr.aws/b3c4u5n1/filecoin-core-api:${{ github.ref_name }}"

0 comments on commit 75239ff

Please sign in to comment.