Skip to content

Commit ab596a1

Browse files
committed
Syntax fix in ci file
1 parent a8efddd commit ab596a1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
run: |
4848
ruff check backend/app backend/tests
4949
50-
# Ruff formating check
50+
# Ruff formatting check
5151
- name: Ruff format check
5252
run: |
5353
ruff format --check backend/app backend/tests
@@ -67,7 +67,7 @@ jobs:
6767
password: ${{ secrets.GITHUB_TOKEN }}
6868

6969
# Semantic Docker image tagging (relesae-grade)
70-
- name: Dcoker metadata
70+
- name: Docker metadata
7171
id: meta
7272
uses: docker/metadata-action@v5
7373
with:
@@ -81,7 +81,7 @@ jobs:
8181
# Build and push docker image (for main only)
8282
- name: Build and push Docker image
8383
uses: docker/build-push-action@v5
84-
if: github.ref == 'refs/heads/main' || startWith(github.ref, 'refs/tags/v')
84+
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
8585
with:
8686
context: backend
8787
file: backend/Dockerfile

0 commit comments

Comments
 (0)