Initial commit #1
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: Demo Vector Search Build & Push | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install kubectl | |
uses: azure/setup-kubectl@v2.0 | |
with: | |
version: "v1.23.6" # default is latest stable | |
id: install | |
- 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: us-east-1 | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Store build time | |
id: build-time | |
shell: bash | |
run: >- | |
echo "::set-output name=time::$(date +%s)" | |
- name: Check out the repo | |
uses: actions/checkout@v2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Build, tag, and push image to Amazon ECR | |
env: | |
DOCKER_TAG: indexnetwork/dag-jose-vector-search:${{ steps.build-time.outputs.time }} | |
DOCKER_REGISTRY: public.ecr.aws/o7v8m7v2 | |
run: | | |
docker build -t $DOCKER_TAG . | |
docker tag $DOCKER_TAG $DOCKER_REGISTRY/$DOCKER_TAG | |
docker push $DOCKER_REGISTRY/$DOCKER_TAG | |
docker tag $DOCKER_TAG $DOCKER_REGISTRY/indexnetwork/dag-jose-vector-search:latest-${GITHUB_REF#refs/heads/} | |
docker push $DOCKER_REGISTRY/indexnetwork/dag-jose-vector-search:latest-${GITHUB_REF#refs/heads/} |