Skip to content

github actions for generating helm charts tester docker image #63

github actions for generating helm charts tester docker image

github actions for generating helm charts tester docker image #63

Workflow file for this run

name: Build Docker File (Dev)
on:
workflow_dispatch:
pull_request:
paths:
- .github/workflows/buildDockerfile.yml
branches:
- dev
jobs:
build-docker-file:
name: Build Docker file
runs-on: ubuntu-latest
# env:
# ResourceGroupLocation: northeurope
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: europe-west2-docker.pkg.dev
username: _json_key
password: ${{ secrets.GCLOUD_SERVICE_KEY }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: "{{defaultContext}}:build"
push: true
tags: ${{ env.ARTIFACT_REGISTRY_REPO_NAME }}/githubactions:latest
provenance: false