🐛 fix(Navigation.tsx): fix margin-bottom style of StyledBugCard compo… #2068
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: Build and Push to ECR | |
on: | |
push: | |
branches: | |
- '*' | |
workflow_dispatch: | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js 16.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16.x | |
- run: yarn --frozen-lockfile | |
- run: yarn validate | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Get branch | |
shell: bash | |
run: | | |
BRANCH=$(echo ${GITHUB_REF##*/}) | |
if [ -z "$BRANCH" ]; then | |
BRANCH=$(echo ${{ github.event.inputs.tag }}) | |
fi | |
echo "##[set-output name=branch;]$BRANCH" | |
id: extract_repo_branch | |
- name: Extract tag name | |
shell: bash | |
run: | | |
TAG=$(echo ${{ steps.extract_repo_branch.outputs.branch }}) | |
if [ "$TAG" = "master" ]; then | |
TAG="latest" | |
fi | |
echo "##[set-output name=img_tag;]$TAG" | |
id: extract_image_tag | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@13d241b293754004c80624b5567555c4a39ffbe3 | |
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: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@aaf69d68aa3fb14c1d5a6be9ac61fe15b48453a2 | |
- name: Build, tag, and push image to Amazon ECR | |
id: build-image | |
env: | |
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
ECR_REPOSITORY: unguess-react | |
IMAGE_TAG: ${{ steps.extract_image_tag.outputs.img_tag }} | |
run: | | |
# Build a docker container and | |
# push it to ECR so that it can | |
# be deployed to ECS. | |
docker build \ | |
--build-arg STRAPI_TOKEN=${{ secrets.STRAPI_TOKEN }} \ | |
--build-arg STAGE_ENV="development" \ | |
-t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG . | |
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG | |
echo "::set-output name=image::$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" |