Skip to content
This repository has been archived by the owner on Mar 5, 2024. It is now read-only.

Commit

Permalink
Create docker image.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sei-dupdyke authored Jan 25, 2024
1 parent f437229 commit 4faad76
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Make Docker Container

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

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Extract tag name # Extract tag name based on event type
id: tag_name
run: |
if [[ $GITHUB_EVENT_NAME == 'release' ]]; then
echo "##[set-output name=tag;]$(echo ${GITHUB_REF#refs/tags/})"
else
echo "##[set-output name=tag;]latest"
fi
shell: bash

- 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-animator:${{ steps.tag_name.outputs.tag }}
push: true
context: src/.
file: ./src/Dockerfile

0 comments on commit 4faad76

Please sign in to comment.