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.
apt update
apt install
1 parent 04f9a8a commit ee31f3bCopy full SHA for ee31f3b
.github/workflows/release-binaries.yml
@@ -87,7 +87,9 @@ jobs:
87
88
- name: Install Debian build dependencies
89
if: matrix.target.debian-build-deps != ''
90
- run: sudo apt install ${{ matrix.target.debian-build-deps }}
+ run: |
91
+ sudo apt update
92
+ sudo apt install ${{ matrix.target.debian-build-deps }}
93
94
- name: Set macOS build env variables
95
if: runner.os == 'macOS'
@@ -107,6 +109,7 @@ jobs:
107
109
- name: Upload binaries
108
110
if: ${{ always() && needs.prepare.outputs.upload == 'true' }}
111
run: |
112
113
sudo apt install python3-github
114
${{ needs.prepare.outputs.build-dir }}/llvm-project/llvm/utils/release/github-upload-release.py \
115
--token ${{ github.token }} \
0 commit comments