Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/release-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ jobs:

- name: Install Debian build dependencies
if: matrix.target.debian-build-deps != ''
run: sudo apt install ${{ matrix.target.debian-build-deps }}
run: |
sudo apt update
sudo apt install ${{ matrix.target.debian-build-deps }}

- name: Set macOS build env variables
if: runner.os == 'macOS'
Expand All @@ -107,6 +109,7 @@ jobs:
- name: Upload binaries
if: ${{ always() && needs.prepare.outputs.upload == 'true' }}
run: |
sudo apt update
sudo apt install python3-github
${{ needs.prepare.outputs.build-dir }}/llvm-project/llvm/utils/release/github-upload-release.py \
--token ${{ github.token }} \
Expand Down