Skip to content

added seconds cron job with query_length=3 #21

added seconds cron job with query_length=3

added seconds cron job with query_length=3 #21

Workflow file for this run

name: Build and Publish Docker
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.TOKEN }}
- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: ghcr.io/${{ github.repository }}/yahoo-symbols-downloader:latest
platforms: linux/amd64,linux/arm64