Skip to content

Fix container image deployment #175

Fix container image deployment

Fix container image deployment #175

Workflow file for this run

name: Deploy to GHCR
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v2

Check failure on line 14 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy.yml

Invalid workflow file

You have an error in your yaml syntax on line 14
with:
registry: ghcr.io
username: muncomputersciencesociety
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build image and push to registry
uses: docker/build-push-action@v4
with:
push: true
tags: ghcr.io/muncomputersciencesociety/automata:latest