feat: implemented key to use the bech32 content (#58) #21
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: Controller | |
on: | |
push: | |
branches: | |
- "main" | |
paths: | |
- ".github/workflows/controller.yml" | |
- "operator/**" | |
jobs: | |
build-images: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- context: . | |
file: docker/dockerfile.operator | |
endpoint: demeter-run/ext-cardano-node-operator | |
continue-on-error: true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v2 | |
with: | |
context: ${{ matrix.context }} | |
file: ${{ matrix.file }} | |
platforms: linux/amd64 | |
push: true | |
tags: ghcr.io/${{ matrix.endpoint }},ghcr.io/${{ matrix.endpoint }}:${{ github.sha }} |