Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix sitemap api
Browse files Browse the repository at this point in the history
cp-sumi-k committed Jan 24, 2024
1 parent e89b6a1 commit 1cde9d6
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-backend-dev.yml
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ jobs:
role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/github-actions-backend-access
aws-region: ap-south-1

- name: Build backend and deploy to S3
- name: Build backend and copy zip to S3
run: |
apt-get update && apt-get install -y zip
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o main main.go
2 changes: 1 addition & 1 deletion .github/workflows/deploy-backend-prod.yml
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ jobs:
role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/github-actions-backend-access
aws-region: ap-south-1

- name: Build backend and deploy to S3
- name: Build backend and copy zip to S3
run: |
apt-get update && apt-get install -y zip
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o main main.go
5 changes: 1 addition & 4 deletions .github/workflows/deploy-frontend-dev.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
name: DeployFrontendDev

on:
workflow_run:
workflows: ["DeployBackendDev"]
types:
- completed
push:

jobs:
deploy-frontend-dev:

0 comments on commit 1cde9d6

Please sign in to comment.