Skip to content

Commit

Permalink
adds socializer builder
Browse files Browse the repository at this point in the history
  • Loading branch information
Dustin Updyke committed May 8, 2024
1 parent a54a666 commit 6218671
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/socializer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Make API Container

on:
workflow_dispatch:
branches: [ main ]
release:
types: [ "published" ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Login to dockerhub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push Docker images
uses: docker/build-push-action@v2
with:
tags: dustinupdyke/ghosts-socializer
push: true
context: src/ghosts.pandora.socializer/src/.
file: .src/ghosts.pandora.socializer/src/Dockerfile

0 comments on commit 6218671

Please sign in to comment.