Update lightsail-deploy.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 | |
jobs: | |
configure-aws-credentials: | |
runs-on: ubuntu-latest | |
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 | |
run: | | |
service_name="diaspora-service" | |
container_name="$service_name-container" | |
echo $service_name | |
echo $container_name | |
docker build -t $container_name -f Dockerfile . |