Merge pull request #173 from DrDroidLab/fix/victoria_logs_headers #299
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: "VPC Agent build" | |
| #run-name: "VPC Agent updated by ${{ github.actor }} and run by ${{ github.triggering_actor }}" | |
| on: | |
| pull_request: | |
| paths: | |
| - .github/workflows/build-and-push.yaml | |
| - "**" | |
| branches: | |
| - "main" | |
| push: | |
| paths: | |
| - .github/workflows/build-and-push.yaml | |
| - "**" | |
| branches: | |
| - "main" | |
| permissions: write-all | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| setup: | |
| runs-on: warp-ubuntu-latest-x64-16x-spot | |
| outputs: | |
| SHORT_SHA: ${{ steps.setup.outputs.SHORT_SHA }} | |
| EPOCH_TIMESTAMP: ${{ steps.setup.outputs.EPOCH_TIMESTAMP }} | |
| MONTH: ${{ steps.setup.outputs.MONTH }} | |
| YEAR: ${{ steps.setup.outputs.YEAR }} | |
| CLEAN_BRANCH_NAME: ${{ steps.setup.outputs.CLEAN_BRANCH_NAME }} | |
| steps: | |
| - name: Set variables | |
| id: setup | |
| run: | | |
| echo "SHORT_SHA=${GITHUB_SHA:0:7}" >> $GITHUB_OUTPUT | |
| echo "EPOCH_TIMESTAMP=$(date +%s)" >> $GITHUB_OUTPUT | |
| echo "MONTH=$(date +%m)" >> $GITHUB_OUTPUT | |
| echo "YEAR=$(date +%Y)" >> $GITHUB_OUTPUT | |
| # Handle both PR and push events | |
| if [ "${{ github.event_name }}" = "pull_request" ]; then | |
| BRANCH_NAME="${{ github.base_ref }}" | |
| else | |
| BRANCH_NAME=${GITHUB_REF#refs/heads/} | |
| fi | |
| echo "CLEAN_BRANCH_NAME=$(echo ${BRANCH_NAME} | tr '/' '-')" >> $GITHUB_OUTPUT | |
| build: | |
| needs: [setup] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Login to Docker Hub | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_TEAM_NAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build and Tag | |
| env: | |
| IMAGE_TAG_SHA: ${{ needs.setup.outputs.SHORT_SHA }} | |
| IMAGE_TAG_BRANCH: ${{ needs.setup.outputs.CLEAN_BRANCH_NAME }}-${{ needs.setup.outputs.EPOCH_TIMESTAMP }} | |
| IMAGE_TAG_BRANCH_ORIG: ${{ needs.setup.outputs.CLEAN_BRANCH_NAME }} | |
| IMAGE_TAG_EPOCH_TIMESTAMP: ${{ needs.setup.outputs.EPOCH_TIMESTAMP }} | |
| REPO_NAME: ${{ secrets.DOCKERHUB_TEAM_NAME }}/drd-vpc-agent | |
| EVENT_NAME: ${{ github.event_name }} | |
| run: | | |
| echo "Building for repository" | |
| if [ "$EVENT_NAME" = "push" ]; then | |
| EXPORT_FLAG="--push" | |
| PLATFORMS="linux/amd64,linux/arm64" | |
| else | |
| EXPORT_FLAG="--load" | |
| PLATFORMS="linux/amd64" | |
| fi | |
| docker buildx build \ | |
| --platform $PLATFORMS \ | |
| --tag ${REPO_NAME}:$IMAGE_TAG_SHA \ | |
| --tag ${REPO_NAME}:$IMAGE_TAG_EPOCH_TIMESTAMP \ | |
| --tag ${REPO_NAME}:$IMAGE_TAG_BRANCH_ORIG \ | |
| --tag ${REPO_NAME}:$IMAGE_TAG_BRANCH \ | |
| --tag ${REPO_NAME}:latest \ | |
| --build-arg BUILDKIT_INLINE_CACHE=1 \ | |
| --build-arg COMMIT_HASH=$IMAGE_TAG_SHA \ | |
| --file Dockerfile \ | |
| $EXPORT_FLAG \ | |
| . | |
| # - name: Push to ECR | |
| # if: github.event_name == 'push' | |
| # run: | | |
| # echo "Pushing to repository" | |
| # REPO_NAME=${{ secrets.REPO_NAME }} | |
| # docker push ${REPO_NAME} --all-tags |