Skip to content
This repository has been archived by the owner on Nov 10, 2024. It is now read-only.

Merge branch 'main' of https://github.com/TeaClientMC/Docs #2

Merge branch 'main' of https://github.com/TeaClientMC/Docs

Merge branch 'main' of https://github.com/TeaClientMC/Docs #2

Workflow file for this run

name: Build Docker Image And Deploy.
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ghcr.io/${{ github.repository_owner }}/docs:latest