Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
altfoxie committed Nov 28, 2023
1 parent 4e60c6e commit 226dea9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,16 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Get lowercase repo name
id: repo
run: |
echo "::set-output name=repo::${GITHUB_REPOSITORY,,}"
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm6
push: true
tags: ghcr.io/${{ github.repository }}:latest
tags: ghcr.io/${{ steps.repo.outputs.repo }}:latest

0 comments on commit 226dea9

Please sign in to comment.