Skip to content

Commit

Permalink
+39
Browse files Browse the repository at this point in the history
  • Loading branch information
SunSerega committed Aug 18, 2024
1 parent 21dfc0e commit cc59ee8
Showing 1 changed file with 21 additions and 7 deletions.
28 changes: 21 additions & 7 deletions .github/workflows/upstream pretest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,29 @@ jobs:
git config --global user.name "sun pack bot"
git config --global user.email "[email protected]"
# git config --global --add url.https://github.com/.insteadOf "[email protected]:"
- name: checkout
uses: actions/checkout@main
with:
repository: 'SunSerega/OpenCL-Docs'
path: './fork'
token: ${{ secrets.PAT }}
# token: ${{ secrets.SSH_KEY }}

- name: delete pretest ref
run: |
# $fork_dir = './fork'
# $subm_fork_url = '[email protected]:KhronosGroup/OpenCL-Docs.git'
$fork_dir = './fork'
$subm_fork_url = '[email protected]:KhronosGroup/OpenCL-Docs.git'
# New-Item -ItemType Directory -Path $fork_dir | Out-Null
# Push-Location $fork_dir
# git init --bare
# git remote add fork $subm_fork_url
# git push fork --delete "pretest/123"
New-Item -ItemType Directory -Path $fork_dir | Out-Null
Push-Location $fork_dir
git init --bare
git remote add fork $subm_fork_url
git push fork --delete "pretest/123"
Push-Location './fork'
git push origin --delete "pretest/123"
throw 'temp exit'
Expand Down

0 comments on commit cc59ee8

Please sign in to comment.