Path
This commit is contained in:
parent
32c0eadea2
commit
8477fd7bb2
7
.github/workflows/v2.yml
vendored
7
.github/workflows/v2.yml
vendored
@ -207,10 +207,9 @@ jobs:
|
|||||||
- name: Extract version from build.gradle.kts
|
- name: Extract version from build.gradle.kts
|
||||||
id: extract_version
|
id: extract_version
|
||||||
run: |
|
run: |
|
||||||
echo $(cat ./apps/coordinator/build.gradle.kts | grep '^version\s*=\s*\".*\"')
|
|
||||||
echo $(cat ./apps/coordinator/build.gradle.kts | grep '^version\s*=\s*\".*\"' | sed 's/^version\s*=\s*\"\(.*\)\"/\1/')
|
|
||||||
VERSION=$(cat ./apps/coordinator/build.gradle.kts | grep '^version\s*=\s*\".*\"' | sed 's/^version\s*=\s*\"\(.*\)\"/\1/')
|
VERSION=$(cat ./apps/coordinator/build.gradle.kts | grep '^version\s*=\s*\".*\"' | sed 's/^version\s*=\s*\"\(.*\)\"/\1/')
|
||||||
echo "::set-output name=version::$VERSION"
|
echo "VERSION=$VERSION"
|
||||||
|
echo "VERSION=$VERSION" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Build Coordinator module
|
- name: Build Coordinator module
|
||||||
id: build-coordinator
|
id: build-coordinator
|
||||||
@ -238,7 +237,7 @@ jobs:
|
|||||||
file: ./dockerfiles/DebianJavaFfmpeg
|
file: ./dockerfiles/DebianJavaFfmpeg
|
||||||
build-args:
|
build-args:
|
||||||
MODULE_NAME=coordinator
|
MODULE_NAME=coordinator
|
||||||
APP_VERSION=${{ steps.extract_version.outputs.version }}
|
APP_VERSION=${{ env.VERSION }}
|
||||||
push: true
|
push: true
|
||||||
tags: |
|
tags: |
|
||||||
bskjon/mediaprocessing-coordinator:v2
|
bskjon/mediaprocessing-coordinator:v2
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user