Skip to content

Try Again

Try Again #3

Workflow file for this run

on: [push]
jobs:
hello_world_job:
runs-on: ubuntu-latest
name: A job to say hello
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Action
run: npm install
working-directory: ./.github/workflows/opendds-action
- name: Hello world action step
uses: ./.github/workflows/opendds-action
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 }}"