Skip to content

fix typo

fix typo #5

Workflow file for this run

name: Docker Image CI for GHCR
on:
push
jobs:
build_and_publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and push the image
run: |
echo ${{ secrets.GH_PAT }} | docker login ghcr.io -u ${{ secrets.GH_USER }} --password-stdin
docker build . -t ghcr.io/${{ secrets.GH_USER }}/spira-training:0.0.1
docker push ghcr.io/${{ secrets.GH_USER }}/spira-training:0.0.1