Browse Source

name fix

pull/335/head
GilbN 3 years ago
committed by GitHub
parent
commit
80bbcba679
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 19
      .github/workflows/docker-build.yml

19
.github/workflows/docker-build.yml

@ -24,13 +24,14 @@ jobs:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GH_PAT }}
- name: build&push
if1: "${{ github.ref == 'refs/heads/live' }}"
run1: |
- name: build&push live
if: ${{ github.ref == 'refs/heads/live' }}
run: |
docker build docker/ --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 ghcr.io/gilbn/theme.park
if2: "${{ github.ref == 'refs/heads/live_develop' }}"
run2: |
- name: build&push dev
if: ${{ github.ref == 'refs/heads/live_develop' }}
run: |
docker build docker/ --build-arg TP_RELEASE=${{ steps.get_version.outputs.VERSION }} --build-arg BUILD_DATE=${{ steps.date_time.outputs.NOW }} --tag ghcr.io/gilbn/theme.park:develop --tag ghcr.io/gilbn/theme.park:${{ steps.get_version.outputs.VERSION }}
docker push --all-tags ghcr.io/gilbn/theme.park
push_to_dockerhub:
@ -51,13 +52,13 @@ jobs:
with:
username: ${{ secrets.DH_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: build&push live
if: "${{ github.ref == 'refs/heads/live' }}"
- name: build&push dh live
if: ${{ github.ref == 'refs/heads/live' }}
run: |
docker build docker/ --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 ghcr.io/gilbn/theme.park
- name: build&push dev
if: "${{ github.ref == 'refs/heads/live_develop' }}"
- name: build&push dh dev
if: ${{ github.ref == 'refs/heads/live_develop' }}
run: |
docker build docker/ --build-arg TP_RELEASE=${{ steps.get_version.outputs.VERSION }} --build-arg BUILD_DATE=${{ steps.date_time.outputs.NOW }} --tag gilbn/theme.park:develop --tag gilbn/theme.park:${{ steps.get_version.outputs.VERSION }}
docker push --all-tags gilbn/theme.park

Loading…
Cancel
Save