-
Notifications
You must be signed in to change notification settings - Fork 10
33 lines (27 loc) · 1005 Bytes
/
test-dockerfile.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Test Docker Image Action (Hello Action)
on:
push:
branches: [ main, iain-changes ]
pull_request:
branches: [ main, iain-changes ]
jobs:
hello_world_job:
runs-on: ubuntu-latest
name: A job to say hello
steps:
# To use this repository's private action,
# you must check out the repository
- name: Checkout
uses: actions/checkout@v4
- name: Hello world action step
uses: ./.github/actions/hello-action # Uses an action in the root directory
id: hello
with:
who-to-greet: 'Mona the Octocat'
# Use the output from the `hello` step
- name: Get the output time
run: |
echo "The time was ${{ steps.hello.outputs.time }}"
(echo "The python3 path is ${{ steps.hello.outputs.python3 }}" || echo "No python3 found!")
(echo "The chapel path is ${{ steps.hello.outputs.chapel }}" || echo "No chapel found!")
echo "All outputs: ${{ steps.hello.outputs }}"