Skip to content

Merge branch 'master' of https://github.com/Daranix/game-of-life-js-c… #1

Merge branch 'master' of https://github.com/Daranix/game-of-life-js-c…

Merge branch 'master' of https://github.com/Daranix/game-of-life-js-c… #1

Workflow file for this run

name: Build Dokerfile
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
registry: ghrc.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ghcr.io/${{ github.repository_owner }}/${{ github.repository }}:latest