Skip to content

Commit 10839e8

Browse files
committed
Update outdated workflow
1 parent 5095cf4 commit 10839e8

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

.github/workflows/cmake.yml

+11-9
Original file line numberDiff line numberDiff line change
@@ -22,33 +22,34 @@ jobs:
2222
fail-fast: true
2323
matrix:
2424
include:
25-
- os: windows-2019
25+
- os: windows-2022
2626
triplet: x64-windows
2727
platform-name: windows.x64
2828
butler-url: https://broth.itch.ovh/butler/windows-amd64/LATEST/archive/default
29-
- os: macos-12
30-
triplet: x64-osx
29+
- os: macos-14
30+
triplet: arm64-osx
3131
platform-name: macos.x64
3232
butler-url: https://broth.itch.ovh/butler/darwin-amd64/LATEST/archive/default
33-
- os: ubuntu-20.04
33+
- os: ubuntu-24.04
3434
triplet: x64-linux
3535
platform-name: linux.x64
3636
butler-url: https://broth.itch.ovh/butler/linux-amd64/LATEST/archive/default
3737

3838
env:
3939
# Indicates the CMake build directory where project files and binaries are being produced.
4040
CMAKE_BUILD_DIR: ${{ github.workspace }}/build
41+
archive-name:
4142

4243
steps:
4344
# fetch-depth=0 and v1 are needed for 'git describe' to work correctly.
44-
- uses: actions/checkout@v1
45+
- uses: actions/checkout@v4
4546
with:
4647
fetch-depth: 0
4748
submodules: true
4849
# Setup the build machine with the most recent versions of CMake and Ninja. Both are cached if not already: on subsequent runs both will be quickly restored from GitHub cache service.
4950
- uses: lukka/get-cmake@latest
5051
- name: Restore vcpkg and its artifacts
51-
uses: actions/cache@v3
52+
uses: actions/cache@v4
5253
with:
5354
# The first path is where vcpkg generates artifacts while consuming the vcpkg.json manifest file.
5455
# The second path is the location of vcpkg (it contains the vcpkg executable and data files).
@@ -104,15 +105,16 @@ jobs:
104105
Compress-Archive dist/*/ ${{ env.archive-name }}.zip
105106
# Upload archives as artifacts, these can be downloaded from the GitHub Actions page.
106107
- name: "Upload Artifact"
107-
uses: actions/upload-artifact@v3
108+
uses: actions/upload-artifact@v4
108109
with:
109-
name: automated-builds
110+
name: automated-builds-${{ matrix.triplet }}
110111
path: ${{ env.archive-name }}.*
112+
compression-level: 0
111113
retention-days: 7
112114
if-no-files-found: error
113115
# If a tag is pushed then a new archives are uploaded to GitHub Releases automatically.
114116
- name: Upload release
115-
if: startsWith(github.ref, 'refs/tags/')
117+
if: github.ref_type == 'tag'
116118
uses: svenstaro/upload-release-action@v2
117119
with:
118120
repo_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)