Skip to content

fix: ghcr login

fix: ghcr login #23

Workflow file for this run

name: Build
on: push
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: make image
- name: Test
run: make test
- name: Lint
run: make lint
- name: Push
if: github.ref == 'refs/heads/master'
run: |
echo ${{ secrets.GH_PAT }} | docker login ghcr.io -u andrii-rieznik --password-stdin
make push-image