Skip to content

Commit

Permalink
+changelog-ignore: github action
Browse files Browse the repository at this point in the history
  • Loading branch information
jcdcdev committed Nov 11, 2023
1 parent b66a2ae commit c83dd7f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ env:
DOCKER_PASSWORD: ${{ secrets.docker-password }}
DOCKER_IMAGE_PATH: ./build
DOCKER_IMAGE_DEPLOY_PATH: ./deploy
ARTIFACT_NAME: ${{ replace( DOCKER_IMAGE_NAME, '/', '_') }}
jobs:
determine-version:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -74,7 +75,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: ${{ env.DOCKER_IMAGE_NAME }}
name: ${{ env.ARTIFACT_NAME }}
path: ${{ env.DOCKER_IMAGE_PATH }}
push:
name: push ${{ needs.determine-version.outputs.semVer }} to ${{ inputs.registry }}
Expand All @@ -87,7 +88,7 @@ jobs:
- name: Download artifact and push
uses: actions/download-artifact@v2
with:
name: ${{ env.DOCKER_IMAGE_NAME }}
name: ${{ env.ARTIFACT_NAME }}
path: ${{ env.DOCKER_IMAGE_DEPLOY_PATH }}
- name: Login to Container Registry
uses: docker/login-action@v1
Expand Down

0 comments on commit c83dd7f

Please sign in to comment.