Skip to content

Fix typo in readme

Fix typo in readme #5

Workflow file for this run

name: build container images for GHCR
on:
push:
branches: master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
# Use https://github.com/marketplace/actions/push-to-ghcr
- name: build the image
run: |
cd build/haven && \

Check failure on line 20 in .github/workflows/ghcr-images.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ghcr-images.yml

Invalid workflow file

You have an error in your yaml syntax on line 20
docker buildx build \
--tag armchairancap/haven-for-tribler:latest \
--platform linux/amd64,linux/arm64 . && \
cd ../tribler && docker buildx build \
--tag armchairancap/tribler-haven:latest \
--platform linux/amd64,linux/arm64 .