Skip to content

Commit

Permalink
feat: deploy ghcr container
Browse files Browse the repository at this point in the history
  • Loading branch information
DasCanard committed Aug 8, 2023
1 parent 5d6f7d4 commit 60fc78c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/deploy_docker_container.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Publish Docker Package

on:
push:
branches:
- main
- test_ghcr

jobs:
build_and_publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and push to GHCR
run: |
docker login --username dascanard --password ${{ secrets.GH_PAT }} ghcr.io
docker build . -t ghcr.io/vured/vured-bot:latest
docker push ghcr.io/vured/vured-bot:latest

0 comments on commit 60fc78c

Please sign in to comment.