Skip to content

Commit

Permalink
[FIX] bugs fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
ismoilovdevml committed Feb 16, 2024
1 parent 751149a commit a9f57cd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pages/guides/ci-cd/github-actions-ci-cd.en-UZ.mdx
Original file line number Diff line number Diff line change
@@ -90,7 +90,7 @@ on:
```yaml
env:
IMAGE_NAME: ${{ github.repository }}
REPO_NAME: ${{ github.repository }}
CONTAINER_NAME: devops-journey
REGISTRY: ghcr.io
```
@@ -141,8 +141,8 @@ Ushbu bosqichda **REGISTRY**ga **github.actor**ning **GITHUB_TOKEN**'ni bilan [d
with:
context: .
push: true
tags: "${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}"
cache-from: type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME}}:buildcache
tags: "${{ env.REGISTRY }}/${{ env.REPO_NAME }}:${{ github.sha }}"
cache-from: type=registry,ref=${{ env.REGISTRY }}/${{ env.REPO_NAME}}:buildcache
cache-to: type=registry,ref=${{ env.REGISTRY }}/${{ env.REPO_NAME}}:buildcache,mode=max
```

0 comments on commit a9f57cd

Please sign in to comment.