Skip to content

Commit

Permalink
use new action
Browse files Browse the repository at this point in the history
  • Loading branch information
mikevader committed May 30, 2024
1 parent f575607 commit e694d0c
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
on: [push]

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: ./ # Uses an action in the root directory
id: GitOpsCli
with:
command: 'help'
# Use the output from the `hello` step
- name: Get the output time
run: echo "The time was ${{ steps.hello.outputs.time }}"

0 comments on commit e694d0c

Please sign in to comment.