Skip to content

Deploy to staging

Deploy to staging #205

# This is a basic workflow to help you get started with Actions
name: Deploy to staging
# Controls when the workflow will run
on:
workflow_dispatch:
env:
ECR_REPOSITORY: unguess-react
DEPLOY_BUCKET: unguess-app-staging-source
DEPLOY_KEY: unguess-app-react-staging-pipeline/source.zip
PIPELINE: unguess-app-react-staging-pipeline-pipeline
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
environment: Staging
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Extract environment
shell: bash
run: |
echo "##[set-output name=ECR_REPOSITORY;]$ECR_REPOSITORY"
echo "##[set-output name=DEPLOY_BUCKET;]$DEPLOY_BUCKET"
echo "##[set-output name=DEPLOY_KEY;]$DEPLOY_KEY"
echo "##[set-output name=PIPELINE;]$PIPELINE"
id: environment
- name: Extract branch name
shell: bash
run: |
BRANCH=$(echo ${GITHUB_REF#refs/heads/})
if [ "$BRANCH" = "master" ]; then
TAG="latest"
else
TAG="$BRANCH"
fi
echo "##[set-output name=tag;]$TAG"
id: extract_branch
- name: 'Generate dist zip'
run: |
cd deployment
echo -n "${{steps.environment.outputs.ECR_REPOSITORY}}:${{steps.extract_branch.outputs.tag}}" > docker-image.txt
zip dist.zip *
- uses: zdurham/s3-upload-github-action@master
env:
S3_BUCKET: ${{steps.environment.outputs.DEPLOY_BUCKET}}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: 'eu-west-1' # optional: defaults to us-east-1
FILE: ./deployment/dist.zip
S3_KEY: ${{steps.environment.outputs.DEPLOY_KEY}}
- name: configure AWS creds
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-west-1
- name: Start CodePipeline
uses: moia-oss/aws-codepipeline-trigger@v1
with:
pipeline: ${{steps.environment.outputs.PIPELINE}}
wait: true