Skip to content

Commit cbb7662

Browse files
committed
- add .github/workflows/sync-to-bitbucket.yml
1 parent 4041753 commit cbb7662

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: sync-to-bitbucket
2+
3+
# on:
4+
# push
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
with:
12+
fetch-depth: 0 # <-- clone with complete history
13+
14+
- uses: yesolutions/[email protected]
15+
with:
16+
REMOTE: ssh://[email protected]/dirkarnez/${{ github.event.repository.name }}.git
17+
GIT_SSH_PRIVATE_KEY: ${{ secrets.GIT_SSH_PRIVATE_KEY }}
18+
GIT_SSH_NO_VERIFY_HOST: "true"

0 commit comments

Comments
 (0)