Skip to content

Commit

Permalink
Fixes the release workflow (3)
Browse files Browse the repository at this point in the history
  • Loading branch information
arcanis committed Aug 25, 2019
1 parent 5dd5dcb commit f2a079b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/release-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ jobs:
compgen -G 'artifacts/yarn-*.js'
continue-on-error: true

- name: 'Build the deb dist folder'
run: |
./scripts/build-dist.sh
if: success()

- name: 'Build the deb archive'
uses: ./scripts/actions/build-deb
if: success()
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -o pipefail

umask 0022 # Ensure permissions are correct (0755 for dirs, 0644 for files)

version=$(yarn --version)
version=$(node packages/berry-cli/bundles/berry.js --version)

rm -rf dist
mkdir -p artifacts
Expand Down

0 comments on commit f2a079b

Please sign in to comment.