From c6c43a9afa6c2f8ab5bd55e5af4eb5abbf62f8e0 Mon Sep 17 00:00:00 2001 From: Mariano Ruiz Date: Fri, 19 Apr 2024 19:20:16 -0300 Subject: [PATCH] Fix downloader token --- .github/workflows/docker-image.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 6c5d13e..0f97341 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -18,12 +18,12 @@ jobs: run: wget https://gist.github.com/mrsarm/95279381f3d8bf4269499fb437888e2c/raw/github-file.sh - name: Get compose.yaml env: - TOKEN: ${{ secrets.repo_token }} - run: bash ./github-file.sh compose.yaml mrsarm/dcoleman-e2e $GITHUB_REF_SLUG main $TOKEN + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: bash ./github-file.sh compose.yaml mrsarm/dcoleman-e2e $GITHUB_REF_SLUG main $GITHUB_TOKEN - name: Get .env.example env: - TOKEN: ${{ secrets.repo_token }} - run: bash ./github-file.sh .env.example mrsarm/dcoleman-e2e $GITHUB_REF_SLUG main $TOKEN + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: bash ./github-file.sh .env.example mrsarm/dcoleman-e2e $GITHUB_REF_SLUG main $GITHUB_TOKEN - name: Login to Docker Hub uses: docker/login-action@v3