Skip to content

Commit

Permalink
fix: ensure docker build push runs for successful semantic releases
Browse files Browse the repository at this point in the history
  • Loading branch information
emuvente committed Nov 8, 2023
1 parent 7e4c927 commit ed88f23
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/semantic-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ jobs:
SLACK_CHANNEL: "eng-build-failures"
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ needs.create-release.outputs.tag }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: kiva/github-actions
token: ${{ env.GITHUB_PAT }}
Expand All @@ -70,13 +70,12 @@ jobs:
path: .docker
ref: main
patterns: |
resources/org/kiva/marketplaceWebUiCi/ui
resources/org/kiva/marketplaceWebUiCi/ui
- name: move files
run: |
mv .docker/resources/org/kiva/marketplaceWebUiCi/ui/Dockerfile .
- name: docker-build
uses: ./.github/actions/docker-build-push
if: github.event_name == 'pull_request'
with:
dockerfile_target: "release"
push: false
push: true

0 comments on commit ed88f23

Please sign in to comment.