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 5dd5dcb commit f2a079bCopy full SHA for f2a079b
.github/workflows/release-workflow.yml
@@ -27,6 +27,11 @@ jobs:
27
compgen -G 'artifacts/yarn-*.js'
28
continue-on-error: true
29
30
+ - name: 'Build the deb dist folder'
31
+ run: |
32
+ ./scripts/build-dist.sh
33
+ if: success()
34
+
35
- name: 'Build the deb archive'
36
uses: ./scripts/actions/build-deb
37
if: success()
scripts/build-dist.sh
@@ -5,7 +5,7 @@ set -o pipefail
5
6
umask 0022 # Ensure permissions are correct (0755 for dirs, 0644 for files)
7
8
-version=$(yarn --version)
+version=$(node packages/berry-cli/bundles/berry.js --version)
9
10
rm -rf dist
11
mkdir -p artifacts
0 commit comments