diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 084315c..0000000 Binary files a/.DS_Store and /dev/null differ diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..376b004 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,33 @@ +name: Build Docker Image + +on: + push: + branches: [ main, master ] + pull_request: + branches: [ main, master ] + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Build Docker image + uses: docker/build-push-action@v5 + with: + context: . + push: false + tags: parentzone-downloader:latest + cache-from: type=gha + cache-to: type=gha,mode=max + + - name: Test Docker image + run: | + docker run --rm parentzone-downloader:latest python --version + docker run --rm parentzone-downloader:latest ls -la /app diff --git a/.gitignore b/.gitignore index f6d6a11..f1bc760 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ downloaded_images parentzone_images snapshots +__pycache__ +.DS_Store +