Skip to content

Commit

Permalink
new file
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedbham committed Apr 14, 2024
1 parent 8ed5f14 commit a67e7f6
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/hello-workflow-docker-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: test docker worflow action
on:
push:
branches:
- main
paths:
- hello-world-docker-action/action.yml
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Run action
id: hello
uses: ./hello-world-docker-action
with:
who-to-greet: '@ahmedbham'
- name: output time
run: echo "The time we greeted the person was ${{ steps.hello.outputs.time }}"



0 comments on commit a67e7f6

Please sign in to comment.