Add support for fetching AWS account ID mappings and update AccountCo… #12900
This file contains hidden or 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: Staging | |
| # Controls when the workflow will run | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| outputs: | |
| IMAGE_TAG: ${{ steps.docker_tag.outputs.IMAGE_TAG }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-java@v2 | |
| with: | |
| distribution: 'adopt' | |
| java-version: '8' | |
| architecture: x64 | |
| - name: Convert github branch name to be compatible with docker tag name convention and generate tag name | |
| id: docker_tag | |
| run: echo "IMAGE_TAG=a-$(echo ${{ github.ref_name }} | sed 's/[^a-zA-Z0-9]/-/g')" >> $GITHUB_OUTPUT | |
| - run: mvn package -Dakto-image-tag=${{ github.event.inputs.Tag }} -Dakto-build-time=$(eval "date +%s") -Dakto-release-version=${{steps.docker_tag.outputs.IMAGE_TAG}} | |
| - name: DockerHub login | |
| env: | |
| DOCKER_USERNAME: ${{secrets.DOCKER_USERNAME}} | |
| DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}} | |
| run: | | |
| docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD | |
| - name: Build, tag, and push the image to DockerHub | |
| id: build-image-dockerhub | |
| env: | |
| ECR_REGISTRY: aktosecurity | |
| ECR_REPOSITORY: akto-api-security | |
| IMAGE_TAG: ${{ steps.docker_tag.outputs.IMAGE_TAG }} | |
| run: | | |
| echo $IMAGE_TAG >> $GITHUB_STEP_SUMMARY | |
| docker buildx create --use | |
| # Build a docker container and push it to DockerHub | |
| cd apps/database-abstractor | |
| docker buildx build --platform linux/arm64/v8,linux/amd64 -t $ECR_REGISTRY/akto-api-security-database-abstractor:$IMAGE_TAG . --push |