Skip to content

Commit

Permalink
docs: updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
tomerh2001 committed Sep 30, 2023
1 parent 4d2c6e9 commit 07c10cc
Showing 1 changed file with 29 additions and 2 deletions.
31 changes: 29 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,29 @@
# git-crypt-pipe
Bitbucket pipe for decrypting git-crypt'ed files
# Bitbucket Pipelines Pipe: git-crypt-pipe

Decrypts `git-crypt` encrypted repositories in Bitbucket Pipelines.

## YAML Definition

Add the following snippet to the script section of your `bitbucket-pipelines.yml` file:

```yaml
script:
- pipe: tomerh2001/git-crypt-pipe:latest
variables:
SECRETS_KEY: $SECRETS_KEY
```

## Variables

| Name | Usage | Type |
|--------------|----------------------------------------------|----------|
| `SECRETS_KEY`| The base64 encoded git-crypt key. | Mandatory|

## Details

This pipe is built to help you decrypt files in your git repository encrypted using `git-crypt` during a Bitbucket Pipeline run. Ensure that you have `git-crypt` setup properly in your repository before using this pipe.

## Prerequisites

- You must have your repository encrypted with `git-crypt`.
- A base64 encoded `git-crypt` key stored in your Bitbucket Pipelines environment variables as `SECRETS_KEY`.

0 comments on commit 07c10cc

Please sign in to comment.