We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4516516 commit 999e227Copy full SHA for 999e227
.github/workflows/deploy-docs.yml
@@ -30,9 +30,9 @@ jobs:
30
- name: Clone target repo
31
run: |
32
git clone https://x-access-token:${{ secrets.TARGET_REPO_PAT }}@github.com/explodinglabs/explodinglabs.com.git target-repo
33
- rm -rf target-repo/superstack
34
- mkdir -p target-repo/superstack
35
- cp -a site/. target-repo/superstack/
+ rm -rf target-repo/$(basename "$GITHUB_REPOSITORY")
+ mkdir -p target-repo/$(basename "$GITHUB_REPOSITORY")
+ cp -a site/. target-repo/$(basename "$GITHUB_REPOSITORY")/
36
env:
37
GIT_AUTHOR_NAME: GitHub Actions
38
GIT_COMMITTER_NAME: GitHub Actions
0 commit comments