Skip to content

Commit

Permalink
add test for another action call
Browse files Browse the repository at this point in the history
  • Loading branch information
kengo-k committed Jun 1, 2024
1 parent 5f3feaa commit 83f7ec4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
6 changes: 4 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@ inputs:
description: 'Who to greet'
required: true
runs:
using: 'docker'
image: 'Dockerfile'
using: 'composite'
steps:
- name: 'Call Another Action'
uses: kengo-k/docker-build/internal@main
8 changes: 8 additions & 0 deletions internal/action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: 'Publish Docker images'
description: 'Dockerfileに変更があった場合イメージをビルドしてGHCRにPUSHする'

runs:
using: 'composite'
steps:
- name: Display Hello
run: echo "hello"

0 comments on commit 83f7ec4

Please sign in to comment.