Skip to content

Commit

Permalink
chore(ci): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tillepille committed Dec 18, 2023
1 parent 1e7a028 commit 9ced98c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
run: |
docker buildx create --use
docker buildx inspect --bootstrap
docker buildx build --platform linux/amd64,linux/arm64 -t tillepille/diagrams::latest .
docker buildx build --platform linux/amd64,linux/arm64 -t tillepille/diagrams:latest .
- name: Push Docker image
if: github.ref == 'refs/heads/main'
run: |
echo ${{ secrets.DOCKERHUB_TOKEN }} | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
docker buildx create --use
docker buildx inspect --bootstrap
docker buildx build --platform linux/amd64,linux/arm64 -t tillepille/diagrams::latest --push .
docker buildx build --platform linux/amd64,linux/arm64 -t tillepille/diagrams:latest --push .
env:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}

0 comments on commit 9ced98c

Please sign in to comment.