Skip to content

Commit ff4b6bd

Browse files
committed
Testing GH Actions
1 parent 2c2e552 commit ff4b6bd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/docker-image-gh-action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ PROJECT_DIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
33
STAGE ?= "prod"
44
DOCKER_SERVER ?= 597764168253.dkr.ecr.us-east-1.amazonaws.com
55
DOCKER_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)

0 commit comments

Comments
 (0)