Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 1.05 KB

readme.md

File metadata and controls

40 lines (27 loc) · 1.05 KB

⚡️ oxidize-rb/actions/post-run

Simple action to run a command after a job has finished.

Example usage

name: Test

on: push

jobs:
  test:
    runs-on: ubuntu-latest
      - uses: actions/checkout@v4
      - uses: oxidize-rb/actions/post-run@v1
        with:
          run: cargo cache --autoclean

Inputs

Name Description Default
always Always run, even if the job fails. false
cwd A working directory from which the command needs to be run.
run A command that needs to be run. echo "This is a post-action command..."

Outputs

Name Description