From e5b78baa7f69722b89e36082ba901676bf291747 Mon Sep 17 00:00:00 2001 From: Bloodcloak <59000966+bloodcloak@users.noreply.github.com> Date: Tue, 26 Mar 2024 21:28:13 -0400 Subject: [PATCH] modifications to ci --- .github/workflows/ci.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c18214..5ecc103 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,10 +22,11 @@ jobs: VERSION=${GITHUB_REF#refs/tags/v} fi - echo ::set-output name=git_repo::${GIT_REPO} - echo ::set-output name=docker_user::${DOCKER_USER} - echo ::set-output name=docker_image::${DOCKER_IMAGE} - echo ::set-output name=version::${VERSION} + echo "git_repo=${GIT_REPO}" >> $GITHUB_OUTPUT + echo "docker_user=${DOCKER_USER}" >> $GITHUB_OUTPUT + echo "docker_image=${DOCKER_IMAGE}" >> $GITHUB_OUTPUT + echo "version=${VERSION}" >> $GITHUB_OUTPUT + - name: Setup Docker Buildx uses: docker/setup-buildx-action@v3 - name: Login to Docker Registry @@ -44,6 +45,4 @@ jobs: ${{ steps.prepare.outputs.docker_image }}:${{ steps.prepare.outputs.version }} build-args: | GIT_VERSION=${{ steps.prepare.outputs.version }} - GIT_REPO=${{ steps.prepare.outputs.git_repo }} - cache-from: type=gha - cache-to: type=gha,mode=max \ No newline at end of file + GIT_REPO=${{ steps.prepare.outputs.git_repo }} \ No newline at end of file