Skip to content

Commit

Permalink
repo
Browse files Browse the repository at this point in the history
  • Loading branch information
karllu3 committed Jul 27, 2024
1 parent 0f72f9d commit c1c7c56
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/generate_default_project.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
test-Github-default-instance:
uses: ./.github/workflows/generate_default_project_reusable.yaml
with:
repo-path: \@github.com/karllu3/ds-lk-default.git
repo-path: github.com/karllu3/ds-lk-default.git
repo-user: karllu3
repo-user-email: [email protected]
cookiecutter-profile: cookiecutter_default_gh.yaml
Expand All @@ -15,7 +15,7 @@ jobs:
test-GitLab-default-instance:
uses: ./.github/workflows/generate_default_project_reusable.yaml
with:
repo-path: \@gitlab.com/lukasz.karlowski/ds-lk-default.git
repo-path: gitlab.com/lukasz.karlowski/ds-lk-default.git
repo-user: lukasz karlowski
repo-user-email: [email protected]
cookiecutter-profile: cookiecutter_default_gh.yaml
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/generate_default_project_reusable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ jobs:

- name: Prepare remote link
run: |
echo "REMOTE_REPO_REF=$(echo 'https://oauth2:${{ secrets.REPO_KEY_GITHUB }}${{ inputs.repo_path }}')" >> $GITHUB_ENV
echo "remote repo $REMOTE_REPO_REF"
echo "REMOTE_REPO_REF=$(echo 'https://oauth2:${{ secrets.REPO_KEY_GITHUB }}\@${{ inputs.repo_path }}')" >> $GITHUB_ENV
echo "remote repo ${{ env.REMOTE_REPO_REF }}"
- name: Remote checkout
run: |
echo "REMOTE_REPO_REF=$(echo 'https://oauth2:${{ secrets.REPO_KEY_GITHUB }}${{ inputs.repo_path }}')" >> $GITHUB_ENV
echo "REMOTE_REPO_REF=$(echo 'https://oauth2:${{ secrets.REPO_KEY_GITHUB }}\@${{ inputs.repo_path }}')" >> $GITHUB_ENV
echo ${{ env.REMOTE_REPO_REF }}
git clone ${{ env.REMOTE_REPO_REF }} ds-default-repo
cp -r ds-default/. ds-default-repo
Expand Down

0 comments on commit c1c7c56

Please sign in to comment.