8000 GitHub - xeger/post-step-action: Allows composite GitHub Actions to define a post-run step.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

xeger/post-step-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

post-step-action

This is a GitHub action that lets you define your own post-run script for a GitHub job. It is especially useful to other GitHub actions with using: composite, as they cannot define their own post-run steps. As a workaround, composite actions can call this action as a step.

This action is derived from pyTooling/Actions and is packaged for distribution in the Github Marketplace as a convenience to the GitHub community.

Usage

With a Job

jobs:
  has-post-run-step:
    runs-on: ubuntu-latest
    steps:
      - uses: xeger/post-step-action@main
        with:
          post: |
            echo "So long, and thanks for all the fish."
      - run: |
          echo "Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun."

With a Composite Action

runs:
  using: 'composite'
  steps:
    - uses: xeger/post-step-action@main
      with:
        post: |
          echo "Goodbye, and thanks for all the fish."

About

Allows composite GitHub Actions to define a post-run step.

Resources

License

Stars

Watchers

Forks

Packages

No packages published
0