Skip to content

Create Container Pandora #10

Create Container Pandora

Create Container Pandora #10

name: Create Container Pandora
on:
workflow_dispatch:
branches: [ main ]
release:
types: [ "published" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Login to Docker Hub
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-pandora:latest
push: true
context: ./src/ghosts.pandora/
file: ./src/ghosts.pandora/Dockerfile