Skip to content

Commit 169b84d

Browse files
fix github actions (#621)
The previous PR initialized github actions but a workflow was failing due to capital repo name. That has been fixed. --------- Co-authored-by: Chaitanya Rai <[email protected]>
1 parent 93fcea0 commit 169b84d

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/main.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ on:
1212

1313
env:
1414
REGISTRY: ghcr.io
15-
IMAGE_NAME: consoleCICD
16-
IMAGE_TAG: v1.0.0
15+
IMAGE_NAME: consolecicd
16+
IMAGE_TAG: v1
1717

1818
jobs:
1919
shellcheck:
@@ -74,4 +74,4 @@ jobs:
7474
context: ./automatic-deployment-CICD-template
7575
dockerfile: ./automatic-deployment-CICD-template/Dockerfile
7676
push: ${{ github.ref == 'refs/heads/master' }} # Changed from main to master
77-
tags: ghcr.io/${{ github.repository }}/consoleCICD:${{ env.IMAGE_TAG }}
77+
tags: ghcr.io/akashnetwork/awesome-akash/consolecicd:${{ env.IMAGE_TAG }}

automatic-deployment-CICD-template/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
version: "2.0"
33
services:
44
service-1:
5-
image: ghcr.io/akash-network/awesome-akash/consoleCICD:v1.0.0
5+
image: ghcr.io/akashnetwork/awesome-akash/consolecicd:v1
66
expose:
77
- port: 3000
88
as: 80

automatic-deployment-CICD-template/javascript/main.bats

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ setup() {
99

1010

1111
NEXT=(
12-
"https://github.com/HemanthGangula/next-js-app.git (Next.js)"
1312
"https://github.com/AykutSarac/jsoncrack.com.git (Next.js)"
1413
"https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git (Next.js)"
1514
)

0 commit comments

Comments
 (0)