From 17b829995fc81edb27605116419c91365b1088fa Mon Sep 17 00:00:00 2001 From: Aldrin Jenson Date: Mon, 16 Oct 2023 21:35:12 +0530 Subject: [PATCH] login to ghcr properly --- .github/workflows/integration-test.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration-test.yaml b/.github/workflows/integration-test.yaml index c42f5a2c1..5262e75f3 100644 --- a/.github/workflows/integration-test.yaml +++ b/.github/workflows/integration-test.yaml @@ -12,9 +12,14 @@ jobs: docker-compose-test: name: Quest Smoke and Load Tests runs-on: ubuntu-latest + steps: - name: Login to GitHub Container Registry - run: echo ${{ secrets.GH_TOKEN }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GH_TOKEN }} - name: Checkout uses: actions/checkout@v3 - name: Start compose