Skip to content

Commit

Permalink
CI/CD Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioassuncao committed Jun 27, 2024
1 parent 24d37b6 commit 6ff9d07
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/docker-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@ jobs:
with:
fetch-depth: 0 # Fetch all history for all branches and tags.

- name: Login into registry
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: echo "${GITHUB_TOKEN}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}

- name: Build and push to registry
run: make release-all

0 comments on commit 6ff9d07

Please sign in to comment.