mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2024-11-15 01:39:37 +00:00
Saahil
b1fd32ecc6
Co-authored-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com>
22 lines
580 B
YAML
22 lines
580 B
YAML
name: publish
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
publish-docker-image:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Login to GitHub Container Registry
|
|
uses: docker/login-action@v1
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.MY_TOKEN }}
|
|
- name: Build the Docker image
|
|
run: |
|
|
docker build . --tag ghcr.io/neongamerbot-qk/saahildcom:latest
|
|
docker push ghcr.io/neongamerbot-qk/saahildcom:latest
|