Skip to content

try workflow

try workflow #30

Workflow file for this run

name: Deploy to Server
on:
push:
branches:
- compose2
jobs:
push-store-image:
runs-on: ubuntu-latest
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@main
- name: 'Login to GitHub Container Registry'
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: 'Build Image'
run: |
docker build -t ghcr.io/thedmdim/ytstalker:latest .
docker push ghcr.io/thedmdim/ytstalker:latest