Skip to content

Commit 0dff865

Browse files
committed
fix
1 parent a83b07b commit 0dff865

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/deploy-python.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,20 @@ name: Build and Push Kernel Docker Image
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [main]
66
workflow_dispatch:
7-
87

98
jobs:
109
build-and-push:
1110
runs-on: self-hosted
1211
if: github.actor == 'ptrlrd' && github.repository_owner == 'ptrlrd'
1312
steps:
14-
1513
- name: Checkout Repository
1614
uses: actions/checkout@v2
1715

1816
- name: Configure Git
1917
run: |
18+
export HOME=$(pwd)
2019
git config --global user.name '${{ secrets.GIT_USER_NAME }}'
2120
git config --global user.email '${{ secrets.GIT_USER_EMAIL }}'
2221
BRANCH_NAME="${GITHUB_REF#refs/heads/}" || "main"

0 commit comments

Comments
 (0)