Skip to content

Commit c6c1fa0

Browse files
authored
Fix automatic builds/artifacts (#288)
1 parent 5dc01ad commit c6c1fa0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/msbuild.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# This workflow contains a single job called "build"
1919
build:
2020
# The type of runner that the job will run on
21-
runs-on: ubuntu-latest
21+
runs-on: ubuntu-22.04
2222

2323
# Steps represent a sequence of tasks that will be executed as part of the job
2424
steps:
@@ -69,7 +69,7 @@ jobs:
6969
cp -v -R "${GITHUB_WORKSPACE}/GameData" "${RELEASE_DIR}"
7070
7171
- name: Upload artifacts
72-
uses: actions/upload-artifact@v1
72+
uses: actions/upload-artifact@v4
7373
with:
7474
name: TestFlight
7575
path: ${{ steps.assemble-release.outputs.release-dir }}

.github/workflows/pr-comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
pr_comment:
88
if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success'
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-22.04
1010
steps:
1111
- uses: actions/github-script@v3
1212
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
tagged-release:
1111
name: "Tagged Release"
1212
# The type of runner that the job will run on
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-22.04
1414

1515
# Steps represent a sequence of tasks that will be executed as part of the job
1616
steps:

0 commit comments

Comments
 (0)