1
0
mirror of synced 2026-01-12 00:42:56 +00:00

Fgh002.1: Workflow to test Docker Hub Login in this repo (#675)

* Complete revamp of the buildRelease and buildDocker workflows for Medley.  Also adding the buildReleaseInclDocker composite workflow.

* Add testLogin workflow to test Docker Hub login.
This commit is contained in:
Frank Halasz 2022-02-12 09:40:01 -08:00 committed by GitHub
parent 9dc01167c3
commit b2315a9b10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

23
.github/workflows/testLogin.yml vendored Normal file
View File

@ -0,0 +1,23 @@
name: 'Test Docker Login'
# Run this workflow on ...
on:
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
login_test:
runs-on: ubuntu-latest
steps:
- id: only_step
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}