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 a83b07b commit 0dff865Copy full SHA for 0dff865
.github/workflows/deploy-python.yaml
@@ -2,21 +2,20 @@ name: Build and Push Kernel Docker Image
2
3
on:
4
push:
5
- branches: [ main ]
+ branches: [main]
6
workflow_dispatch:
7
-
8
9
jobs:
10
build-and-push:
11
runs-on: self-hosted
12
if: github.actor == 'ptrlrd' && github.repository_owner == 'ptrlrd'
13
steps:
14
15
- name: Checkout Repository
16
uses: actions/checkout@v2
17
18
- name: Configure Git
19
run: |
+ export HOME=$(pwd)
20
git config --global user.name '${{ secrets.GIT_USER_NAME }}'
21
git config --global user.email '${{ secrets.GIT_USER_EMAIL }}'
22
BRANCH_NAME="${GITHUB_REF#refs/heads/}" || "main"
0 commit comments