Skip to content

Commit

Permalink
CI: fix binaries publishing 馃挌
Browse files Browse the repository at this point in the history
follow-up of c7ae174
  • Loading branch information
derhuerst committed Jul 7, 2023
1 parent 551257e commit d6f761f
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/release-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- run: sudo apt install -y p7zip

- name: Download Binaries
run: sh ./download-binaries/index.sh
run: ./download-binaries/index.sh

- name: Compress Binaries
run: |
Expand Down Expand Up @@ -312,21 +312,21 @@ jobs:
asset_content_type: application/octet-stream

- uses: actions/upload-release-asset@v1.0.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: bin/ffprobe-darwin-arm64
asset_name: ffprobe-darwin-arm64
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: bin/ffprobe-darwin-arm64
asset_name: ffprobe-darwin-arm64
asset_content_type: application/octet-stream
- uses: actions/upload-release-asset@v1.0.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: bin/ffprobe-darwin-arm64.gz
asset_name: ffprobe-darwin-arm64.gz
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: bin/ffprobe-darwin-arm64.gz
asset_name: ffprobe-darwin-arm64.gz
asset_content_type: application/octet-stream

- uses: actions/upload-release-asset@v1.0.1
env:
Expand Down

0 comments on commit d6f761f

Please sign in to comment.