Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
brueckner committed Sep 12, 2024
1 parent 61c38a9 commit 2d4e1fa
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Testing
runs:
using: 'docker'
image: 'Dockerfile'
- name: Containerized Build
uses: ./.github/workflows/my-container-action

16 changes: 16 additions & 0 deletions .github/workflows/my-container-action/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# action.yml
name: 'Hello World'
description: 'Greet someone and record the time'
inputs:
who-to-greet: # id of input
description: 'Who to greet'
required: true
default: 'World'
outputs:
time: # id of output
description: 'The time we greeted you'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.who-to-greet }}

0 comments on commit 2d4e1fa

Please sign in to comment.