Skip to content

Commit

Permalink
chore: improve last blog's content
Browse files Browse the repository at this point in the history
- expand description
- add some context to a portion
  • Loading branch information
dhruv-ahuja committed Mar 5, 2024
1 parent 39b110b commit a11ab9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/posts/tag_based_ci_cd_pipeline.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
+++
title = "Tag-Based Python CI/CD Pipeline"
description = "Setting up a Python CI/CD pipeline using GitHub Actions, triggering on Git Tag Pushes"
description = "A guide to setting up a CI/CD pipeline for Python using GitHub Actions, that runs on Git tag pushes. Also includes a step to handle CI pipeline failures through a step that allows SSHing into the workflow runner instance."
date = "2024-03-05"
+++

Expand Down Expand Up @@ -125,7 +125,7 @@ I am using `Ruff` as the formatter and linter of choice, it is very fast and I

The next two steps check for formatting and lint errors in the code and stop the workflow in case of any errors. This ensures that contributing developers adhere to Ruff’s code quality standards.

The last step is optional, and only runs if any of the previous steps fails. It allows us to ssh into the currently ongoing workflow session to debug issues. Be careful though, it kept running for quite a while since I forgot to cancel the workflow run manually.  I am not sure if it has a time limit or it keeps running indefinitely.
The last step is optional, and only runs if any of the previous steps fails. It allows us to ssh into the currently ongoing workflow session to check the environment and debug issues. Be careful though, it kept running for quite a while since I forgot to cancel the workflow run manually.  I am not sure if it has a time limit or it keeps running indefinitely.

## Creating the CD workflow

Expand Down

0 comments on commit a11ab9c

Please sign in to comment.