Skip to content

Commit

Permalink
active-matches: Add Active Matches Scraper
Browse files Browse the repository at this point in the history
  • Loading branch information
raimannma committed Oct 10, 2024
1 parent 4c7465a commit c87fd6a
Show file tree
Hide file tree
Showing 10 changed files with 3,437 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/docker-image-active-matches-scraper.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: docker-image-active-matches-scraper

on:
workflow_dispatch:
push:
branches:
- 'main'
paths:
- 'active-matches-scraper/**'

env:
IMAGE_TAG_OWNER: opensource-deadlock-tools
IMAGE_TAG_NAME: devlock

permissions:
contents: read
packages: write

concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push Compose
uses: docker/build-push-action@v6
with:
push: true
tags: ghcr.io/${{ env.IMAGE_TAG_OWNER }}/${{ env.IMAGE_TAG_NAME }}/active-matches-scraper:latest
context: active-matches-scraper
2 changes: 2 additions & 0 deletions active-matches-scraper/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
target/
tmp/
1 change: 1 addition & 0 deletions active-matches-scraper/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tmp/
Loading

0 comments on commit c87fd6a

Please sign in to comment.