File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed
Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 1+ name : "Build Images"
2+ on :
3+ workflow_dispatch:
4+ inputs:
5+ logLevel:
6+ description: 'Log level'
7+ required: true
8+ default: 'warning'
9+ tags:
10+ description: 'Test Workflow'
11+
12+ jobs :
13+ build:
14+ runs-on: ubuntu-latest
15+ name: Image Build
16+ timeout-minutes: 45
17+ steps:
18+ - uses: actions/checkout@v2
19+
20+ - name: Set commit SHA
21+ run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV
22+
23+ - name: Build the stack
24+ run: docker-compose -f docker-compose.build.yml -env example.env build
25+
Original file line number Diff line number Diff line change @@ -46,7 +46,6 @@ services:
4646 # TM_CONSUMER_KEY
4747 # TM_CONSUMER_SECRET
4848
49-
5049 tasks-backend :
5150 image : ${WS_DOCKER_REGISTRY}/workspaces-tasks-backend:${WS_DOCKER_TAG}
5251 build :
You can’t perform that action at this time.
0 commit comments