Skip to content

Commit 7614621

Browse files
committed
Fix indentation bug in workflow
1 parent 34115d6 commit 7614621

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/kubeflow.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ name: Kubernetes Batchjob Connector
33

44
on:
55
push:
6-
branches:
7-
- master
86
tags:
97
- 'v*'
108

@@ -29,7 +27,7 @@ jobs:
2927
run: dotnet publish KubeJobs/KubeJobs.csproj -c Release -o linuxoutput --self-contained -r linux-x64
3028

3129
- name: Tar Linux output folder
32-
run: tar -cvzf ./kubernetes-batchjob-container-linux.tar.gz linuxoutput
30+
run: tar -cvzf ./kubernetes-batchjob-container-linux.tar.gz linuxoutput
3331

3432
- name: Upload Linux artifact
3533
uses: actions/[email protected]
@@ -57,14 +55,14 @@ jobs:
5755
runs-on: ubuntu-latest
5856
name: Release
5957
needs: package
60-
58+
6159
steps:
6260
- name: Download Package
6361
uses: actions/download-artifact@v1
6462
with:
6563
name: kubernetes-batchjob-container-artifact
6664
path: ./
67-
65+
6866
- name: Create Release
6967
id: create_release
7068
uses: actions/create-release@latest

0 commit comments

Comments
 (0)