Skip to content

Commit 6fb9d90

Browse files
committed
fix workflow syntax error
1 parent 58e808a commit 6fb9d90

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/build-binaries.yml

+9-6
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,15 @@ on:
55
env:
66
CGO_ENABLED: 1
77
jobs:
8-
- name: Login to GitHub Container Registry
9-
uses: docker/login-action@v3
10-
with:
11-
registry: ghcr.io
12-
username: ${{ github.actor }}
13-
password: ${{ secrets.GITHUB_TOKEN }}
8+
login:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Login to GitHub Container Registry
12+
uses: docker/login-action@v3
13+
with:
14+
registry: ghcr.io
15+
username: ${{ github.actor }}
16+
password: ${{ secrets.GITHUB_TOKEN }}
1417
build-linux-intel:
1518
runs-on: ubuntu-latest
1619
strategy:

0 commit comments

Comments
 (0)