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