File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,16 +27,16 @@ jobs:
2727 id : vars
2828 run : echo ::set-output name=VERSION::$(git branch --show-current)-$(git rev-parse --short HEAD)
2929
30- - name : Build and push the Squidex Docker Image
31- run : make deploy
30+ # - name: Build and push the Squidex Docker Image
31+ # run: make deploy
3232
3333 - name : Create Release
3434 id : create_release
3535 uses : actions/create-release@v1
3636 env :
3737 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
3838 with :
39- tag_name : ${{ steps.vars.outputs.docker_tag }}
39+ tag_name : ${{ steps.vars.outputs.VERSION }}
4040 release_name : New Squidex Docker Image in ECR
4141 draft : false
4242 prerelease : false
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ PROJECT_DIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
33STAGE ?= "prod"
44DOCKER_SERVER ?= 597764168253.dkr.ecr.us-east-1.amazonaws.com
55DOCKER_IMAGE ?= ${DOCKER_SERVER}/homer-squidex
6- VERSION ?= $(shell git branch --show-current) -$(shell git rev-parse --short HEAD)
6+ VERSION ?= $(shell git branch --show-current) -$(shell git rev-parse --short HEAD) -TEST
77
88# ifndef AWS_PROFILE
99# $(error AWS_PROFILE is not set)
You can’t perform that action at this time.
0 commit comments