Skip to content

Commit

Permalink
Squash
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-Prather committed Aug 16, 2023
1 parent 75039c3 commit d5a7f8f
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/deploy-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ on:

env:
REPO: ${{github.event.repository.name}}
JF_ARTIFACTORY_1: ${{ secrets.artifactory_token}}

jobs:
checkout-repo:
Expand All @@ -33,11 +34,9 @@ jobs:
needs: checkout-repo
steps:
- name: Build and deploy dev
if: "${{ github.event.inputs.DEV }}
if: ${{ github.event.inputs.DEV }}
uses: jfrog/setup-jfrog-cli@v1
with:
JF_ARTIFACTORY_1: ${{ secrets.artifactory_token}}
run: |
- run: |
cd ${{env.REPO}}
./build-and-deploy-dockers.sh -d
shell: bash
Expand All @@ -49,9 +48,7 @@ jobs:
- name: Build and deploy release
if: ${{ github.event.inputs.RELEASE }}
uses: jfrog/setup-jfrog-cli@v1
with:
JF_ARTIFACTORY_1: ${{ secrets.artifactory_token}}
run: |
- run: |
cd ${{env.REPO}}
./build-and-deploy-dockers.sh -r
shell: bash

0 comments on commit d5a7f8f

Please sign in to comment.