Skip to content

Fix repo name

Fix repo name #6

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "main" ]
env:
IMAGE_NAME: vancouver-blocks
VERSION: latest
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: |
cd docs/examples/vancouver_blocks
docker build . --file Dockerfile --tag $IMAGE_NAME
- name: Log in to registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
- name: Push image
run: |
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
# repository name must be lowercase
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
docker tag $IMAGE_NAME $IMAGE_ID:$VERSION
docker push $IMAGE_ID:$VERSION