Skip to content

Commit

Permalink
fix: upload static assets for staging and production releases MP-289
Browse files Browse the repository at this point in the history
  • Loading branch information
emuvente committed May 21, 2024
1 parent ff1396c commit 3452fac
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/semantic-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,22 @@ jobs:
repository: kiva/marketplace-web-ui-ci
token: ${{ env.GITHUB_PAT }}
path: .docker
ref: main
ref: use-existing-assets
patterns: |
resources/org/kiva/marketplaceWebUiCi/ui
- name: move files
run: |
mv .docker/resources/org/kiva/marketplaceWebUiCi/ui/Dockerfile .
- name: build static assets
uses: ./.github/actions/npm-run
with:
command: "build"
- name: upload static assets
uses: ./.github/actions/upload-static-assets
with:
source_dir: "dist"
include: "static/*"
cache_control: "public,max-age=31536000"
- name: docker-build
uses: ./.github/actions/docker-build-push
with:
Expand Down

0 comments on commit 3452fac

Please sign in to comment.