Skip to content

Commit

Permalink
chore: change readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubmikita committed Aug 2, 2022
1 parent 4df657d commit 4ad8451
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# copy_commit_push_tag
This GitHub Action copies a file from the current repository to a location in another repository
# Rsync / Commit / Tag
This GitHub Action copies a file from the current repository to another repository using rsync, commits the change and tags it.

# Example Workflow
name: Push File
Expand All @@ -14,15 +14,15 @@ This GitHub Action copies a file from the current repository to a location in an
uses: actions/checkout@v2

- name: Pushes test file
uses: bonus83/copy_commit_push_tag@main
env:
uses: BracketSpace/rsync-commit-tag@main
env:
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
with:
source_file: 'test2.md'
destination_repo: 'bonus83/release-test'
destination_repo: 'BracketSpace/release-test'
destination_folder: 'test-dir'
user_email: 'example@email.com'
user_name: 'bonus83'
user_name: 'BracketSpace'
commit_message: 'A custom message for the commit'
commit_tag: 'V2.0'

Expand Down

0 comments on commit 4ad8451

Please sign in to comment.