1
0
Fork 0
mirror of synced 2024-06-28 11:00:55 +12:00

Remove sh

This commit is contained in:
Adria Navarro 2023-10-30 14:39:03 +01:00
parent a80ea2f2c0
commit 0dd655e75d
2 changed files with 1 additions and 19 deletions

View file

@ -118,7 +118,7 @@ jobs:
cache-from: type=registry,ref=${{ env.IMAGE_NAME }}:latest
cache-to: type=inline
env:
IMAGE_NAME: proxy-service
IMAGE_NAME: budibase/proxy-service
IMAGE_TAG: ${{ inputs.image_tag }}
release-helm-chart:

View file

@ -1,18 +0,0 @@
#!/bin/bash
tag=$1
if [[ ! "$tag" ]]; then
echo "No tag present. You must pass a tag to this script"
exit 1
fi
echo "Tagging images with tag: $tag"
docker tag proxy-service budibase/proxy:$tag
docker tag app-service budibase/apps:$tag
docker tag worker-service budibase/worker:$tag
docker push --all-tags budibase/apps
docker push --all-tags budibase/worker
docker push --all-tags budibase/proxy