Skip to content

use action from remote #3

use action from remote

use action from remote #3

Workflow file for this run

on: [push]
jobs:
hello_world_job:
runs-on: ubuntu-latest
name: A job to say hello
steps:
- name: Hello world action step
uses: baloise-incubator/gitopscli-action@main # Uses an action in the root directory
id: GitOpsCli
with:
command: '-h'
# Use the output from the `hello` step
- name: Get the output time
run: echo "The time was ${{ steps.hello.outputs.time }}"