Skip to content

Commit

Permalink
feat: create deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
retardgerman authored Jan 6, 2025
1 parent aec5ef4 commit e888ad7
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Deploy to Docker Hub

on:
push:
branches:
- main

jobs:
build-and-deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

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

- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: retardgerman/streamyfin-discord-bot:latest

- name: Verify Docker image
run: |
docker images

0 comments on commit e888ad7

Please sign in to comment.