test versioned helper image

This commit is contained in:
Andras Bacsai
2024-09-05 09:29:18 +02:00
parent 817a72e753
commit 9196571737
2 changed files with 12 additions and 1 deletions

View File

@@ -25,6 +25,10 @@ jobs:
registry: ${{ env.REGISTRY }} registry: ${{ env.REGISTRY }}
username: ${{ github.actor }} username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }} 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 - name: Build image and push to registry
uses: docker/build-push-action@v5 uses: docker/build-push-action@v5
with: with:
@@ -47,6 +51,10 @@ jobs:
registry: ${{ env.REGISTRY }} registry: ${{ env.REGISTRY }}
username: ${{ github.actor }} username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }} 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 - name: Build image and push to registry
uses: docker/build-push-action@v5 uses: docker/build-push-action@v5
with: with:

View File

@@ -5,6 +5,9 @@
}, },
"nightly": { "nightly": {
"version": "4.0.0-beta.331" "version": "4.0.0-beta.331"
},
"helper": {
"version": "0.0.1"
} }
} }
} }