Update lightsail-deploy-web-service.yml #3
Workflow file for this run
This file contains 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: Deploy Lightsail Container | |
on: | |
push: | |
branches: | |
- lightsail-deploy | |
pull_request: | |
branches: | |
- lightsail-deploy | |
workflow_dispatch: | |
inputs: | |
service_name: | |
description: "The name of the Lightsail service" | |
required: true | |
default: "diaspora-web-service" | |
container_name: | |
description: "The name of the Docker container" | |
required: true | |
default: "diaspora-web-service-container" | |
dockerfile_path: | |
description: "The path to the Dockerfile" | |
required: true | |
default: "web_service/Dockerfile" | |
jobs: | |
deploy-lightsail-container: | |
runs-on: ubuntu-latest | |
env: | |
SERVICE_NAME: ${{ github.event.inputs.service_name || 'diaspora-web-service' }} | |
CONTAINER_NAME: ${{ github.event.inputs.container_name || 'diaspora-web-service-container' }} | |
DOCKERFILE_PATH: ${{ github.event.inputs.dockerfile_path || 'web_service/Dockerfile' }} | |
steps: | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: us-east-1 | |
- name: Verify AWS credential | |
run: | | |
aws sts get-caller-identity | |
- name: Install AWS Lightsail plugin | |
run: | | |
sudo curl "https://s3.us-west-2.amazonaws.com/lightsailctl/latest/linux-amd64/lightsailctl" -o "/usr/local/bin/lightsailctl" | |
sudo chmod +x /usr/local/bin/lightsailctl | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build Docker container for AWS Lightsail | |
run: | | |
echo "SERVICE NAME" | |
echo $SERVICE_NAME | |
echo "CONTAINER NAME" | |
echo $CONTAINER_NAME | |
echo "DOCKERFILE PATH" | |
echo $DOCKERFILE_PATH | |
docker build -t $CONTAINER_NAME -f $DOCKERFILE_PATH . | |
docker images | |
- name: Idempotently Create Lightsail container service | |
continue-on-error: true | |
run: | | |
aws lightsail create-container-service --region us-east-1 --service-name $SERVICE_NAME --power small --scale 1 | |
- name: Push Docker image to Lightsail and deploy | |
run: | | |
output=$(aws lightsail push-container-image --region us-east-1 --service-name $SERVICE_NAME --label $CONTAINER_NAME --image $CONTAINER_NAME) | |
image_name=$(echo "$output" | sed -n 's/.*Refer to this image as "\(.*\)" in deployments.*/\1/p') | |
echo "IMAGE NAME" | |
echo "$image_name" | |
containers=$(jq -n --arg image_name "$image_name" '{ | |
"flask": { | |
"image": $image_name, | |
"ports": { | |
"8000": "HTTP" | |
} | |
} | |
}') | |
public_endpoint=$(jq -n '{ | |
"containerName": "flask", | |
"containerPort": 8000 | |
}') | |
aws lightsail create-container-service-deployment --region us-east-1 \ | |
--service-name $SERVICE_NAME \ | |
--containers "$containers" \ | |
--public-endpoint "$public_endpoint" |