Add GHA for building promql-to-scrape #3
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: Test, build and publish promql-to-scrape | |
on: | |
push: | |
paths: | |
- 'cloud/observability/promql-to-scrape/**' | |
branches: | |
- main | |
tags: | |
- v* | |
pull_request: | |
paths: | |
- 'cloud/observability/promql-to-scrape/**' | |
env: | |
IMAGE_NAME: promql-to-scrape | |
jobs: | |
push: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Log in to registry | |
# This is where you will update the personal access token to GITHUB_TOKEN | |
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin | |
- name: Setup Docker metadata | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: | | |
ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }} | |
tags: | | |
type=raw,value=latest,enable={{is_default_branch}} | |
type=raw,value={{branch}} | |
type=ref,event=branch | |
type=ref,event=pr | |
type=sha | |
- name: Build and Push | |
uses: docker/build-push-action@v3 | |
with: | |
context: cloud/observability/promql-to-scrape | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
platforms: linux/amd64,linux/arm64 | |
push: true |