We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad29322 commit 32a4835Copy full SHA for 32a4835
.github/workflows/release.yml
@@ -28,17 +28,18 @@ jobs:
28
29
- name: Pack build
30
run: |
31
- mkdir -p ../artifacts
+ mkdir -p artifacts
32
+ cd dist
33
tar -czvf ../artifacts/dv-frontend.${GITHUB_REF_NAME}.tar.gz .
34
35
- name: Upload artifact
36
uses: actions/upload-artifact@v4
37
with:
38
name: dv-frontend-${{ github.ref_name }}
- path: artifacts/dv-frontend.${{ github.ref_name}}.tar.gz
39
+ path: artifacts/dv-frontend.${{ github.ref_name }}.tar.gz
40
41
release:
- needs: build
42
+ needs: build # ждем сборки
43
runs-on: ubuntu-latest
44
steps:
45
- name: Download artifact
0 commit comments