Skip to content

Commit 567292b

Browse files
xwovrrpavlik
authored andcommitted
fix the package filename
1 parent 1b383e2 commit 567292b

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/build-macos.yml renamed to .github/workflows/macos-build-preset.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
name: macOS builds
55
on:
66
workflow_call:
7-
inputs:
8-
organizeAndRelease:
9-
description: "Should we organize and release our artifacts?"
10-
type: boolean
11-
default: false
7+
# inputs:
8+
# organizeAndRelease:
9+
# description: "Should we organize and release our artifacts?"
10+
# type: boolean
11+
# default: false
1212
workflow_dispatch:
1313

1414
jobs:
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
# Step 1: Checkout the repository
2020
- name: Checkout Repository
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222

2323
# Step 2: Set up Homebrew and install dependencies
2424
- name: Install Dependencies
@@ -47,11 +47,11 @@ jobs:
4747
- name: Package Artifacts
4848
run: |
4949
cd install
50-
tar -czvf OpenXR-Loader-macos-${GITHUB_REF#refs/tags/}.tar.gz *
50+
tar -czvf OpenXR-Loader-macos-package.tar.gz *
5151
5252
# Step 6: Upload the build artifacts
5353
- name: Upload Artifact
54-
uses: actions/upload-artifact@v3
54+
uses: actions/upload-artifact@v4
5555
with:
56-
name: OpenXR-Loader-macos-${GITHUB_REF#refs/tags/}
57-
path: install/OpenXR-Loader-macos-${GITHUB_REF#refs/tags/}.tar.gz
56+
name: OpenXR-Loader-macos-package
57+
path: install/OpenXR-Loader-macos-package.tar.gz

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
organizeAndRelease: true
2121

2222
macos-build:
23-
uses: ./.github/workflows/build-macos.yml
24-
with:
25-
organizeAndRelease: true
23+
uses: ./.github/workflows/macos-build-preset.yml
24+
# with:
25+
# organizeAndRelease: true

0 commit comments

Comments
 (0)