Skip to content

Commit

Permalink
Fix GitHub CI release action failure to publish artifacts.
Browse files Browse the repository at this point in the history
- Update deprecated CI.yml action versions to latest versions.
  • Loading branch information
billhollings committed Oct 8, 2024
1 parent 81541f6 commit 3e88108
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Python 3.12 removed distutils, which is used by glslang::update_glslang_sources.py called from fetchDependencies
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'

Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
- name: Upload Artifacts
if: success() && matrix.upload_artifacts == true
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "MoltenVK-${{ matrix.platform }}"
path: "MoltenVK-${{ matrix.platform }}.tar"
Expand All @@ -127,7 +127,7 @@ jobs:

steps:
- name: Download Artifacts
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4

- name: Create Release
uses: ncipollo/release-action@v1
Expand Down

0 comments on commit 3e88108

Please sign in to comment.