From 919657173757521a1fcfb2b2e29a2e3e01091e73 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Thu, 5 Sep 2024 09:29:18 +0200 Subject: [PATCH] test versioned helper image --- .github/workflows/coolify-helper-next.yml | 8 ++++++++ versions.json | 5 ++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/coolify-helper-next.yml b/.github/workflows/coolify-helper-next.yml index d9921b363..540a4f374 100644 --- a/.github/workflows/coolify-helper-next.yml +++ b/.github/workflows/coolify-helper-next.yml @@ -25,6 +25,10 @@ jobs: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} + - name: Get Version + id: version + run: | + echo "VERSION=$(jq -r '.coolify.helper.version' /app/version.json)"|xargs >> $GITHUB_OUTPUT - name: Build image and push to registry uses: docker/build-push-action@v5 with: @@ -47,6 +51,10 @@ jobs: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} + - name: Get Version + id: version + run: | + echo "VERSION=$(jq -r '.coolify.helper.version' /app/version.json)"|xargs >> $GITHUB_OUTPUT - name: Build image and push to registry uses: docker/build-push-action@v5 with: diff --git a/versions.json b/versions.json index a289345ff..560b427ea 100644 --- a/versions.json +++ b/versions.json @@ -5,6 +5,9 @@ }, "nightly": { "version": "4.0.0-beta.331" + }, + "helper": { + "version": "0.0.1" } } -} \ No newline at end of file +}