Fix results #73
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: Build Docker | |
on: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: k6 | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: docker | |
runs-on: self-hosted-hoprnet-small | |
steps: | |
- name: Checkout hoprnet repository | |
uses: actions/checkout@v3 | |
- name: Set up Google Cloud Credentials | |
id: auth | |
uses: google-github-actions/auth@v1 | |
with: | |
token_format: "access_token" | |
credentials_json: ${{ secrets.GOOGLE_HOPRASSOCIATION_CREDENTIALS_REGISTRY }} | |
- name: Login Google Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: europe-west3-docker.pkg.dev | |
username: oauth2accesstoken | |
password: ${{ steps.auth.outputs.access_token }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
with: | |
driver: kubernetes | |
- name: Build and push docker image | |
uses: docker/build-push-action@v4 | |
with: | |
push: true | |
context: k6 | |
tags: europe-west3-docker.pkg.dev/${{ secrets.GOOGLE_HOPRASSOCIATION_PROJECT }}/docker-images/hoprd-k6:latest | |