We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be nice if the target has an option for success or failure .. so we can have alternatives commands for both flows.
The text was updated successfully, but these errors were encountered:
example:
version: 1.0.0 groups: - name: default env-file: .env targets: clean: help: Use this target to clean up temporary files args: all: type: bool action: store_true help: Remove all files that are tracked by git run: | echo "remove file X" success: echo "ok" failure: echo "false" build: help: Build the program args: clean: type: bool action: store_true help: if not set, the clean dependency will not be triggered. dependencies: - target: clean if: \${\{ args.clean == true \}\} run: | echo "build file x" echo "build file y"
Sorry, something went wrong.
No branches or pull requests
It would be nice if the target has an option for success or failure .. so we can have alternatives commands for both flows.
The text was updated successfully, but these errors were encountered: