Настроил CI
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 1m5s
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 1m5s
This commit is contained in:
parent
4e009a1d7b
commit
92be92a9a0
42
.gitea/workflows/gitea-push-docker.yml
Normal file
42
.gitea/workflows/gitea-push-docker.yml
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
name: Create and publish a Docker image
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: ['main']
|
||||||
|
|
||||||
|
env:
|
||||||
|
REGISTRY: git.zetcraft.ru
|
||||||
|
IMAGE_NAME: ${{ gitea.repository }}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-and-push-image:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container: catthehacker/ubuntu:act-latest
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
packages: write
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Log in to the Container registry
|
||||||
|
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
|
||||||
|
with:
|
||||||
|
registry: ${{ env.REGISTRY }}
|
||||||
|
username: ${{ gitea.actor }}
|
||||||
|
password: ${{ secrets.TOKEN }}
|
||||||
|
|
||||||
|
- name: Extract metadata (tags, labels) for Docker
|
||||||
|
id: meta
|
||||||
|
uses: https://github.com/docker/metadata-action@v4
|
||||||
|
with:
|
||||||
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
||||||
|
|
||||||
|
- name: Build and push Docker image
|
||||||
|
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
push: true
|
||||||
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
|
labels: ${{ steps.meta.outputs.labels }}
|
15
README.md
15
README.md
@ -1,3 +1,18 @@
|
|||||||
# PuskinCardFilmParser
|
# PuskinCardFilmParser
|
||||||
|
|
||||||
Простой парсер фильмов по акции "пушкинская карта" для кинонео и чарли
|
Простой парсер фильмов по акции "пушкинская карта" для кинонео и чарли
|
||||||
|
|
||||||
|
### Запуск в Docker
|
||||||
|
|
||||||
|
``` Docker
|
||||||
|
docker run -d --name PuskinCardFilmParser \
|
||||||
|
--restart=always \
|
||||||
|
-e TZ='Europe/Moscow' \
|
||||||
|
-e API_URL='' \
|
||||||
|
git.zetcraft.ru/easytravel/puskincardfilmparser:main
|
||||||
|
```
|
||||||
|
|
||||||
|
### Библиотеки
|
||||||
|
|
||||||
|
* [Requests](https://requests.readthedocs.io/en/latest/)
|
||||||
|
* [BeautifulSoup](https://www.crummy.com/software/BeautifulSoup/)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user