deployment for Docker

This commit is contained in:
gabrielkheisa
2024-04-08 00:37:38 +07:00
parent 11eb8aa2e5
commit 82ee4813fa
4 changed files with 33 additions and 5 deletions

View File

@@ -18,3 +18,34 @@ jobs:
- name: Build Docker image
run: docker build -t discord-badge .
- name: Run Docker container
run: |
docker run -d -e TOKEN=${{ secrets.DISCORD_TOKEN }} discord-badge
name: Publish Docker Image
on:
push:
branches:
- main # Trigger the workflow on pushes to the main branch
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Login to GitHub Packages Docker registry
run: echo "${{ secrets.GH_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.repository_owner }} --password-stdin
- name: Build Docker image
run: docker build -t docker.pkg.github.com/${{ github.repository }}/discord-badge:latest .
- name: Push Docker image
run: docker push docker.pkg.github.com/${{ github.repository }}/discord-badge:latest