Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
cccaaannn committed Jun 1, 2022
1 parent ab4736f commit 2da8a84
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/DockerCI.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Docker CI

on:
push:
branches: [master]

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build Docker image
run: docker build -t cccaaannn/telegram_youtube_downloader:latest .

- name: Push Docker image
run: docker push cccaaannn/telegram_youtube_downloader

0 comments on commit 2da8a84

Please sign in to comment.