diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f84e14cb4b..c7fc357ae5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,8 +28,8 @@ jobs: run: | BRANCH_NAME=$(echo "${GITHUB_REF##*/}" | tr '[:upper:]' '[:lower:]') REPO_NAME=$(echo "${{ github.repository }}" | tr '[:upper:]' '[:lower:]') - echo "::set-output name=image-tag::${BRANCH_NAME}" - echo "::set-output name=repo-name::${REPO_NAME}" + echo "image-tag=${BRANCH_NAME}" >> $GITHUB_OUTPUT + echo "repo-name=${REPO_NAME}" >> $GITHUB_OUTPUT - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 diff --git a/.github/workflows/guix-build.yml b/.github/workflows/guix-build.yml index 8d1dd36219..1bd3d2a2eb 100644 --- a/.github/workflows/guix-build.yml +++ b/.github/workflows/guix-build.yml @@ -32,8 +32,8 @@ jobs: echo "host_group_id=$(id -g)" >> $GITHUB_OUTPUT BRANCH_NAME=$(echo "${GITHUB_REF##*/}" | tr '[:upper:]' '[:lower:]') REPO_NAME=$(echo "${{ github.repository }}" | tr '[:upper:]' '[:lower:]') - echo "::set-output name=image-tag::${BRANCH_NAME}" - echo "::set-output name=repo-name::${REPO_NAME}" + echo "image-tag=${BRANCH_NAME}" >> $GITHUB_OUTPUT + echo "repo-name=${REPO_NAME}" >> $GITHUB_OUTPUT - name: Login to GitHub Container Registry uses: docker/login-action@v3