From 5ca10e55b3fcc085fa932eba623ec7295ed20fa7 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Fri, 10 May 2024 09:54:06 +0200 Subject: [PATCH] copy dist files --- .github/workflows/release.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7234be966b..005fadfe7d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -76,6 +76,12 @@ jobs: echo "//registry.npmjs.org/:_authToken=${{ env.NPMJS_TOKEN }}" > .npmrc npm publish --otp=${{ env.TOTP_CODE }} --provenance + - uses: actions/upload-artifact@v4 + with: + name: build-distribution + path: ./build/dist + retention-days: 1 + publish-docker: needs: - release @@ -99,7 +105,10 @@ jobs: url: ${{ secrets.VAULT_ADDR }} roleId: ${{ secrets.VAULT_ROLE_ID }} secretId: ${{ secrets.VAULT_SECRET_ID }} - + - uses: actions/download-artifact@v4 + with: + name: build-distribution + path: ./build/dist - id: docker-vars name: Set up docker variables run: |-