22 lines
636 B
YAML
22 lines
636 B
YAML
name: Run price sync
|
|
run-name: Run price sync
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: catthehacker/ubuntu:act-latest
|
|
steps:
|
|
- name: Login to the Container registry
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: gitea.lino.cooking
|
|
username: lino-authelia
|
|
password: ${{ secrets.REGISTRY_PASS }}
|
|
- name: Run container
|
|
run: gitea.lino.cooking/lino-authelia/bpi-stock-price-scraper
|
|
env:
|
|
GHOSTFOLIO_SECURITY_TOKEN: ${{ secrets.GHOSTFOLIO_SECURITY_TOKEN }}
|
|
GHOSTFOLIO_HOST: ${{ secrets.GHOSTFOLIO_HOST }}
|