free-games-claimer/.github/workflows/publish.yml
Workflow config file is invalid. Please check your config file: yaml: line 13: did not find expected key

18 lines
526 B
YAML

name: publish
on: [push]
jobs:
publish-hello-docker-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 . --tag ghcr.io/chezburg/free-games-claimer:latest
docker run ghcr.io/chezburg/free-games-claimer:latest
docker push ghcr.io/chezburg/free-games-claimer:latest