Compare commits

..

No commits in common. "470df69c56903f8fbe2b9e0712b2b2ede28b6ffd" and "37dfe7e26196265915ed2ddaa25b894940488ba4" have entirely different histories.

2 changed files with 0 additions and 39 deletions

View File

@ -5,6 +5,4 @@ RUN apt-get update && apt-get install -y curl jq && apt-get clean && rm -rf /var
WORKDIR /app
COPY getcookie.py .
CMD python getcookie.py

View File

@ -1,37 +0,0 @@
name: Build and Push Docker Images
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
docker:
name: Build and Push Docker Images
runs-on: builder
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Build Docker images
working-directory: .build/prod
run: docker compose build
- name: Login to Docker Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
registry: ${{ vars.DOCKER_REGISTRY_URL }}
username: ${{ vars.DOCKER_REGISTRY_USER }}
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
- name: Push Docker images
if: github.event_name != 'pull_request'
working-directory: .build/prod
run: docker compose push