Browse Source
Merge pull request #344 from GilbN/develop
add name steps in workflow
pull/347/head^2
GilbN
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
0 deletions
-
.github/workflows/docker-build.yml
|
@ -44,6 +44,7 @@ jobs: |
|
|
run: | |
|
|
run: | |
|
|
docker build --build-arg TP_RELEASE=${{ steps.get_version.outputs.VERSION }} --build-arg BUILD_DATE=${{ steps.date_time.outputs.NOW }} --tag ghcr.io/gilbn/theme.park --tag ghcr.io/gilbn/theme.park:${{ steps.get_version.outputs.VERSION }} . |
|
|
docker build --build-arg TP_RELEASE=${{ steps.get_version.outputs.VERSION }} --build-arg BUILD_DATE=${{ steps.date_time.outputs.NOW }} --tag ghcr.io/gilbn/theme.park --tag ghcr.io/gilbn/theme.park:${{ steps.get_version.outputs.VERSION }} . |
|
|
docker push --all-tags ghcr.io/gilbn/theme.park |
|
|
docker push --all-tags ghcr.io/gilbn/theme.park |
|
|
|
|
|
- name: manual build&push master |
|
|
if: ${{ github.event.inputs.branch == 'master' }} |
|
|
if: ${{ github.event.inputs.branch == 'master' }} |
|
|
run: | |
|
|
run: | |
|
|
docker build --build-arg TP_RELEASE=${{ github.event.inputs.tag }} --build-arg BUILD_DATE=${{ steps.date_time.outputs.NOW }} --tag ghcr.io/gilbn/theme.park --tag ghcr.io/gilbn/theme.park:${{ github.event.inputs.tag }} . |
|
|
docker build --build-arg TP_RELEASE=${{ github.event.inputs.tag }} --build-arg BUILD_DATE=${{ steps.date_time.outputs.NOW }} --tag ghcr.io/gilbn/theme.park --tag ghcr.io/gilbn/theme.park:${{ github.event.inputs.tag }} . |
|
@ -76,6 +77,7 @@ jobs: |
|
|
run: | |
|
|
run: | |
|
|
docker build --build-arg TP_RELEASE=${{ steps.get_version.outputs.VERSION }} --build-arg BUILD_DATE=${{ steps.date_time.outputs.NOW }} --tag gilbn/theme.park --tag gilbn/theme.park:${{ steps.get_version.outputs.VERSION }} . |
|
|
docker build --build-arg TP_RELEASE=${{ steps.get_version.outputs.VERSION }} --build-arg BUILD_DATE=${{ steps.date_time.outputs.NOW }} --tag gilbn/theme.park --tag gilbn/theme.park:${{ steps.get_version.outputs.VERSION }} . |
|
|
docker push --all-tags gilbn/theme.park |
|
|
docker push --all-tags gilbn/theme.park |
|
|
|
|
|
- name: manual build&push dh master |
|
|
if: ${{ github.event.inputs.branch == 'master' }} |
|
|
if: ${{ github.event.inputs.branch == 'master' }} |
|
|
run: | |
|
|
run: | |
|
|
docker build --build-arg TP_RELEASE=${{ github.event.inputs.tag }} --build-arg BUILD_DATE=${{ steps.date_time.outputs.NOW }} --tag gilbn/theme.park --tag gilbn/theme.park:${{ github.event.inputs.tag }} . |
|
|
docker build --build-arg TP_RELEASE=${{ github.event.inputs.tag }} --build-arg BUILD_DATE=${{ steps.date_time.outputs.NOW }} --tag gilbn/theme.park --tag gilbn/theme.park:${{ github.event.inputs.tag }} . |
|
|