Skip to content

Commit

Permalink
Merge pull request #6 from rscampos/test_gh_action
Browse files Browse the repository at this point in the history
wip
  • Loading branch information
rscampos authored Jan 14, 2025
2 parents 0066685 + 5d6b6ab commit 7cc3a72
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test-docker-login.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Test Docker Login Action

on:
push:
branches:
- main # Trigger the test on main branch pushes

jobs:
test-docker-login:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Test Docker Login
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Verify Docker Login
run: docker info

0 comments on commit 7cc3a72

Please sign in to comment.