Skip to content

Commit

Permalink
Fix create and publish images workflow (#27)
Browse files Browse the repository at this point in the history
* Add missing action

* Empty-Commit
  • Loading branch information
murbans1 authored Jan 8, 2025
1 parent 9d49537 commit ef087e1
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/actions/setup-docker/action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "Set Up Docker"
description: "Set up Docker"

inputs:
docker-username:
description: "DockerHub username"
required: true
docker-password:
description: "DockerHub password"
required: true

runs:
using: "composite"
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Log into DockerHub
uses: docker/login-action@v3
with:
username: ${{ inputs.docker-username }}
password: ${{ inputs.docker-password }}

0 comments on commit ef087e1

Please sign in to comment.