Skip to content

Merge pull request #22 from tomokinakamaru/minor-fix #29

Merge pull request #22 from tomokinakamaru/minor-fix

Merge pull request #22 from tomokinakamaru/minor-fix #29

Workflow file for this run

name: GHCR
on:
push:
branches:
- main
jobs:
ghcr:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- run: docker build -t ghcr.io/${GITHUB_REPOSITORY}:latest .
- run: docker push ghcr.io/${GITHUB_REPOSITORY}:latest