From ff02537794a2959618f09fc6cf4c4571499e9219 Mon Sep 17 00:00:00 2001 From: Mariano Ruiz Date: Fri, 26 Apr 2024 10:18:02 -0300 Subject: [PATCH] Does run works without \ breaks? --- .github/workflows/e2e.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 9f33709..a71da4b 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -42,14 +42,14 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - ./pose get -H "Authorization: token $GITHUB_TOKEN" \ - "https://raw.githubusercontent.com/mrsarm/dcoleman-e2e/$TAG/compose.yaml" "$TAG:main" + ./pose get -H "Authorization: token $GITHUB_TOKEN" + "https://raw.githubusercontent.com/mrsarm/dcoleman-e2e/$TAG/compose.yaml" "$TAG:main" - name: Get .env.example env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - ./pose get -H "Authorization: token $GITHUB_TOKEN" \ - "https://raw.githubusercontent.com/mrsarm/dcoleman-e2e/$TAG/.env.example" "$TAG:main" + ./pose get -H "Authorization: token $GITHUB_TOKEN" + "https://raw.githubusercontent.com/mrsarm/dcoleman-e2e/$TAG/.env.example" "$TAG:main" - name: Setup environment variables run: cp .env.example .env @@ -65,7 +65,7 @@ jobs: - name: Pull images run: docker compose -f ci.yaml pull - && docker compose -f ci.yaml pull dcoleman-e2e # images with profiles are not pulled by default + && docker compose -f ci.yaml pull dcoleman-e2e # services with profiles are not pulled by default - name: Run e2e tests run: docker compose -f ci.yaml run dcoleman-e2e