Skip to content
Closed
Show file tree
Hide file tree
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
21 changes: 4 additions & 17 deletions .github/workflows/ci-linux-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

name: CI Linux Release Artifacts
on:
release:
types: [created]
pull_request:

permissions:
contents: write
Expand Down Expand Up @@ -48,19 +47,7 @@ jobs:
avifenc
avifdec
- name: Upload artifacts
uses: actions/upload-release-asset@e8f9f06c4b078e705bd2ea027f0926603fc9b4d5 # v1.0.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
with:
# See https://docs.github.com/en/webhooks/webhook-events-and-payloads#release.
upload_url: ${{ github.event.release.upload_url }}
asset_path: build/linux-artifacts.zip
asset_name: linux-artifacts.zip
asset_content_type: application/zip

# Use the following instead of the above to test this workflow outside of a release event.
# - name: Upload artifacts
# uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
# with:
# name: linux-artifacts.zip
# path: build/linux-artifacts.zip
name: linux-artifacts.zip
path: build/linux-artifacts.zip
21 changes: 4 additions & 17 deletions .github/workflows/ci-macos-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

name: CI macOS Release Artifacts
on:
release:
types: [created]
pull_request:

permissions:
contents: write
Expand Down Expand Up @@ -59,19 +58,7 @@ jobs:
avifdec
README.txt
- name: Upload artifacts
uses: actions/upload-release-asset@e8f9f06c4b078e705bd2ea027f0926603fc9b4d5 # v1.0.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
with:
# See https://docs.github.com/en/webhooks/webhook-events-and-payloads#release.
upload_url: ${{ github.event.release.upload_url }}
asset_path: build/${{ runner.os }}-artifacts.zip
asset_name: ${{ runner.os }}-artifacts.zip
asset_content_type: application/zip

# Use the following instead of the above to test this workflow outside of a release event.
# - name: Upload artifacts
# uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
# with:
# name: ${{ runner.os }}-artifacts.zip
# path: build/${{ runner.os }}-artifacts.zip
name: ${{ runner.os }}-artifacts.zip
path: build/${{ runner.os }}-artifacts.zip
21 changes: 4 additions & 17 deletions .github/workflows/ci-windows-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

name: CI Windows Release Artifacts
on:
release:
types: [created]
pull_request:

permissions:
contents: write
Expand Down Expand Up @@ -75,19 +74,7 @@ jobs:
directory: "build/Release"
path: "*.exe"
- name: Upload artifacts
uses: actions/upload-release-asset@e8f9f06c4b078e705bd2ea027f0926603fc9b4d5 # v1.0.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
with:
# See https://docs.github.com/en/webhooks/webhook-events-and-payloads#release.
upload_url: ${{ github.event.release.upload_url }}
asset_path: build/Release/windows-artifacts.zip
asset_name: windows-artifacts.zip
asset_content_type: application/zip

# Use the following instead of the above to test this workflow outside of a release event.
# - name: Upload artifacts
# uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
# with:
# name: windows-artifacts.zip
# path: build/Release/windows-artifacts.zip
name: windows-artifacts.zip
path: build/Release/windows-artifacts.zip
Loading