Skip to content

Commit

Permalink
Fix action syntax (#474)
Browse files Browse the repository at this point in the history
  • Loading branch information
tjex authored Nov 28, 2024
1 parent 32bed81 commit 5e80a62
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/build-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@ on:
env:
CGO_ENABLED: 1
jobs:
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
login:
runs-on: ubuntu-latest
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
build-linux-intel:
runs-on: ubuntu-latest
strategy:
Expand Down

0 comments on commit 5e80a62

Please sign in to comment.