bugfixed speaker configuration #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: Compiler Docker Image CI | |
on: | |
push: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build the Docker image | |
run: docker build -f compiler/Dockerfile -t ghcr.io/binozo/echogosdkcompiler:latest . | |
- name: 'Login to GitHub Container Registry' | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{github.actor}} | |
password: ${{secrets.GITHUB_TOKEN}} | |
- name: Push Docker image | |
run: docker push ghcr.io/binozo/echogosdkcompiler:latest | |
- name: Build the Go compiler image | |
run: docker build -t ghcr.io/binozo/echogo:latest . | |
- name: Push Go compiler image | |
run: docker push ghcr.io/binozo/echogo:latest |