A simple GitHub action that enables running post-run steps, once a workflow job has ended.
Required A command that needs to be run. Default echo "This is a post-run step..."
.
Latest version: 3.1.0
name: Build
on:
push:
branches: [ master ]
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
jobs:
something:
name: Do something...
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: webiny/[email protected]
id: post-run-command
with:
run: echo "this thing works!"
- uses: webiny/[email protected]
id: another-post-run-command
with:
run: echo "this thing works again!"
working-directory: not-required-but-you-can-provide-it
- name: 'Running an non-existing command will fail...'
run: run something that does not exist;
This above configuration will produce the following:
ℹ️ Note the order of execution. The run: echo "this thing works again!"
was executed before the run: echo "this thing works!"
command.