From d816f04f74a05ef9718f994ddd47205c5b99eed3 Mon Sep 17 00:00:00 2001 From: Denys Holius Date: Wed, 27 Mar 2024 12:52:57 +0200 Subject: [PATCH] fxied build pipeline --- .github/workflows/nightly.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 8f78097..303361f 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -12,16 +12,16 @@ jobs: steps: - name: Check out repo - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Log in to Docker Hub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Login to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} @@ -29,7 +29,7 @@ jobs: - name: Cache last built versions id: cache-build-versions - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | last_master @@ -38,8 +38,8 @@ jobs: - name: Install curl and jq run: | - sudo apt-get install curl jq + sudo apt-get install curl jq -y - name: Run build script run: | - bash build.sh \ No newline at end of file + bash -x build.sh \ No newline at end of file