Skip to content

Switch to werkzeug safe_join #23

Switch to werkzeug safe_join

Switch to werkzeug safe_join #23

Workflow file for this run

name: Push
on:
push:
branches:
- "preview23"
env:
ECR_REPOSITORY: images
GIT_REF: "${{ github.ref }}"
IMAGE_TAG: ${{ github.sha }}
jobs:
build:
name: Build
runs-on: ubuntu-20.04
env:
AWS_REGION: sa-east-1
if: startsWith( github.ref, 'refs/heads/dependabot/' ) != true
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
with:
node-version: "14"
- name: Set extra environment variables
run: echo "BRANCH_REF_SLUG=$(./infratools/bin/slugify "$GIT_REF")" >> $GITHUB_ENV
- name: Configure AWS credentials
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: ${{ env.AWS_REGION }}
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1
- name: Build, tag, and push image to Amazon ECR
id: build-image
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
run: |
docker build \
--file Dockerfile \
-t $ECR_REGISTRY/$ECR_REPOSITORY:redash_$IMAGE_TAG \
-t $ECR_REGISTRY/$ECR_REPOSITORY:redash_11 .
docker push $ECR_REGISTRY/$ECR_REPOSITORY:redash_$IMAGE_TAG
docker push $ECR_REGISTRY/$ECR_REPOSITORY:redash_11
echo "image=$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" >> $GITHUB_OUTPUT
- name: Logout of Amazon ECR
if: always()
run: docker logout ${{ steps.login-ecr.outputs.registry }}