This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/.github/actions/build_deploy_backend/action.yml b/.github/actions/build_deploy_backend/action.yml | |
| index 8983d3c..199865d 100644 | |
| --- a/.github/actions/build_deploy_backend/action.yml | |
| +++ b/.github/actions/build_deploy_backend/action.yml | |
| @@ -4,8 +4,11 @@ inputs: | |
| ENVIRONMENT: | |
| description: "Environment to deploy to" | |
| required: true | |
| - AWS_ROLE_ARN: | |
| - description: "ARN of the role to assume" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/.github/actions/build_deploy_backend/action.yml b/.github/actions/build_deploy_backend/action.yml | |
| index 8983d3c..199865d 100644 | |
| --- a/.github/actions/build_deploy_backend/action.yml | |
| +++ b/.github/actions/build_deploy_backend/action.yml | |
| @@ -4,8 +4,11 @@ inputs: | |
| ENVIRONMENT: | |
| description: "Environment to deploy to" | |
| required: true | |
| - AWS_ROLE_ARN: | |
| - description: "ARN of the role to assume" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI/CD Pipeline Production | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| # TODO: Re-enable typecheck job after fixing PageProps/LayoutProps type debt | |
| # See: https://github.com/Virtual-Robert/AVA-dark-factory/issues (create ticket) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| # OpenClaw VPS Quick Setup | |
| # Download and run: curl -O <url> && chmod +x setup.sh && ./setup.sh | |
| BLUE='\033[0;34m' | |
| GREEN='\033[0;32m' | |
| YELLOW='\033[1;33m' | |
| RED='\033[0;31m' |