Skip to content

Don't spam GOG games #1332

Don't spam GOG games

Don't spam GOG games #1332

name: Docker
on:
schedule:
- cron: "27 6 * * *"
push:
paths:
- "**.py"
- "Dockerfile"
- ".github/workflows/docker-publish.yml"
- "requirements.txt"
- "requirements-dev.txt"
pull_request:
workflow_dispatch:
env:
WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }}
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"
- run: python -m pip install -r requirements.txt
- run: python -m pip install -r requirements-dev.txt
- run: python -m pytest
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
if: github.event_name != 'pull_request'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
needs: test
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/build-push-action@v6
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: |
ghcr.io/thelovinator1/discord-free-game-notifier:latest
ghcr.io/thelovinator1/discord-free-game-notifier:master