Skip to content

copied a CSA dockerfile #5

copied a CSA dockerfile

copied a CSA dockerfile #5

Workflow file for this run

name: publish
on: [push]
jobs:
publish-efr32-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build the hello-docker Docker image
run: |
docker build -f Integrations/docker/images/Dockerfile . --tag ghcr.io/matter_extension/hello-docker-gcr-demo:latest
docker run ghcr.io/matter_extension/hello-docker-gcr-demo:latest
docker push ghcr.io/matter_extension/hello-docker-gcr-demo:latest