Skip to content

fix: fix copying

fix: fix copying #6

Workflow file for this run

name: publish_image
on: [push]
jobs:
publish-docker-image:
permissions: write-all
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 Docker image
run: |
docker build --pull -f Dockerfile . --tag ghcr.io/a-nau/easy-image-scraping:latest
docker push ghcr.io/a-nau/easy-image-scraping:latest