Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit77bf065

Browse files
committed
chore: point to itch.io-integration
1 parent48a8681 commit77bf065

14 files changed

+41
-41
lines changed

‎.github/actions/prepare-metadata/action.yml‎

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -110,21 +110,21 @@ runs:
110110
steps:
111111
-name:📦 Resolve Project Name
112112
id:project_name
113-
uses:RedGlow/unity-ci-templates/.github/actions/resolve-project-name@main
113+
uses:RedGlow/unity-ci-templates/.github/actions/resolve-project-name@itch.io-integration
114114
with:
115115
projectNameInput:${{ inputs.projectNameInput }}
116116
projectNameRepoVar:${{ inputs.projectNameRepoVar }}
117117

118118
-name:📦 Resolve Unity Version
119119
id:unity_version
120-
uses:RedGlow/unity-ci-templates/.github/actions/resolve-unity-version@main
120+
uses:RedGlow/unity-ci-templates/.github/actions/resolve-unity-version@itch.io-integration
121121
with:
122122
unityVersionInput:${{ inputs.unityVersionInput }}
123123
unityVersionRepoVar:${{ inputs.unityVersionRepoVar }}
124124

125125
-name:⚙️ Resolve CI Options
126126
id:ci_options
127-
uses:RedGlow/unity-ci-templates/.github/actions/resolve-ci-config@main
127+
uses:RedGlow/unity-ci-templates/.github/actions/resolve-ci-config@itch.io-integration
128128
with:
129129
useGitLfsInput:${{ inputs.useGitLfsInput }}
130130
useGitLfsRepoVar:${{ inputs.useGitLfsRepoVar }}
@@ -137,7 +137,7 @@ runs:
137137

138138
-name:📦 Resolve Test Config
139139
id:test_config
140-
uses:RedGlow/unity-ci-templates/.github/actions/resolve-test-config@main
140+
uses:RedGlow/unity-ci-templates/.github/actions/resolve-test-config@itch.io-integration
141141
with:
142142
editModePathInput:${{ inputs.editModePathInput }}
143143
editModePathRepoVar:${{ inputs.editModePathRepoVar }}
@@ -146,13 +146,13 @@ runs:
146146

147147
-name:📦 Resolve Build Type
148148
id:build_type
149-
uses:RedGlow/unity-ci-templates/.github/actions/resolve-build-type@main
149+
uses:RedGlow/unity-ci-templates/.github/actions/resolve-build-type@itch.io-integration
150150
with:
151151
buildTypeOverride:${{ inputs.buildTypeInput }}
152152

153153
-name:📦 Resolve Timeouts
154154
id:timeouts
155-
uses:RedGlow/unity-ci-templates/.github/actions/resolve-timeouts@main
155+
uses:RedGlow/unity-ci-templates/.github/actions/resolve-timeouts@itch.io-integration
156156
with:
157157
timeoutTestsInput:${{ inputs.timeoutTestsInput }}
158158
timeoutTestsRepoVar:${{ inputs.timeoutTestsRepoVar }}
@@ -161,7 +161,7 @@ runs:
161161

162162
-name:📦 Resolve Retention Days
163163
id:retention
164-
uses:RedGlow/unity-ci-templates/.github/actions/resolve-retention-days@main
164+
uses:RedGlow/unity-ci-templates/.github/actions/resolve-retention-days@itch.io-integration
165165
with:
166166
buildType:${{ steps.build_type.outputs.buildType }}
167167
retentionDaysReleaseRepoVar:${{ inputs.retentionDaysReleaseRepoVar }}
@@ -170,23 +170,23 @@ runs:
170170

171171
-name:📦 Resolve Build Targets
172172
id:build_targets
173-
uses:RedGlow/unity-ci-templates/.github/actions/resolve-build-targets@main
173+
uses:RedGlow/unity-ci-templates/.github/actions/resolve-build-targets@itch.io-integration
174174
with:
175175
buildType:${{ steps.build_type.outputs.buildType }}
176176
buildTargetsInput:${{ inputs.buildTargetsInput }}
177177
buildTargetsRepoVar:${{ inputs.buildTargetsRepoVar }}
178178

179179
-name:📦 Resolve Deploy Targets
180180
id:deploy_targets
181-
uses:RedGlow/unity-ci-templates/.github/actions/validate-deploy-targets@main
181+
uses:RedGlow/unity-ci-templates/.github/actions/validate-deploy-targets@itch.io-integration
182182
with:
183183
buildType:${{ steps.build_type.outputs.buildType }}
184184
buildTargets:${{ steps.build_targets.outputs.buildTargets }}
185185
deployTargets:${{ inputs.deployTargetsInput || inputs.deployTargetsRepoVar || '[]'}}
186186

187187
-name:📦 Analyze Artifact Strategy
188188
id:artifact_strategy
189-
uses:RedGlow/unity-ci-templates/.github/actions/analyze-artifact-strategy@main
189+
uses:RedGlow/unity-ci-templates/.github/actions/analyze-artifact-strategy@itch.io-integration
190190
with:
191191
deployTargets:${{ steps.deploy_targets.outputs.deployTargets }}
192192
artifactSource:${{ inputs.artifactSource }}

‎.github/workflows/build-version-resolver.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
4141
-name:Resolve Build Version
4242
id:get_version
43-
uses:RedGlow/unity-ci-templates/.github/actions/resolve-build-version@main
43+
uses:RedGlow/unity-ci-templates/.github/actions/resolve-build-version@itch.io-integration
4444
with:
4545
ref:"${GITHUB_REF}"
4646
event:"${GITHUB_EVENT_NAME}"
@@ -49,7 +49,7 @@ jobs:
4949

5050
-name:📝 Check if Release Version Already Exists
5151
id:check_release
52-
uses:RedGlow/unity-ci-templates/.github/actions/check-release-exists@main
52+
uses:RedGlow/unity-ci-templates/.github/actions/check-release-exists@itch.io-integration
5353
with:
5454
version:${{ steps.get_version.outputs.version }}
5555
repo:${{ github.repository }}

‎.github/workflows/build-version-tagger.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ jobs:
4242
steps:
4343
-name:Check if Tag Exists
4444
id:tag_exists
45-
uses:RedGlow/unity-ci-templates/.github/actions/check-tag-exists@v1
45+
uses:RedGlow/unity-ci-templates/.github/actions/check-tag-exists@itch.io-integration
4646
with:
4747
version:${{ inputs.buildVersion }}
4848
repository:${{ github.repository }}
4949
github_token:${{ github.token }}
5050

5151
-name:Create Tag if Missing
5252
if:${{ steps.tag_exists.outputs.exists != 'true' }}
53-
uses:RedGlow/unity-ci-templates/.github/actions/create-tag@v1
53+
uses:RedGlow/unity-ci-templates/.github/actions/create-tag@itch.io-integration
5454
id:create
5555
with:
5656
sha:${{ github.sha }}

‎.github/workflows/ci-cd-dispatcher.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
steps:
6969
-name:Resolve runners
7070
id:resolve
71-
uses:RedGlow/unity-ci-templates/.github/actions/resolve-runners@main
71+
uses:RedGlow/unity-ci-templates/.github/actions/resolve-runners@itch.io-integration
7272
with:
7373
main:${{ vars.MAIN_RUNNER }}
7474
macos:${{ vars.MACOS_RUNNER }}

‎.github/workflows/ci-cd-redeployer.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
steps:
4242
-name:Run Project Name Sanitizer
4343
id:sanitize
44-
uses:RedGlow/unity-ci-templates/.github/actions/resolve-project-name@main
44+
uses:RedGlow/unity-ci-templates/.github/actions/resolve-project-name@itch.io-integration
4545
with:
4646
projectNameInput:${{ vars.PROJECT_NAME }}
4747

‎.github/workflows/prepare-metadata.yml‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109

110110
-name:⏳ Prepare Metadata
111111
id:metadata
112-
uses:RedGlow/unity-ci-templates/.github/actions/prepare-metadata@main
112+
uses:RedGlow/unity-ci-templates/.github/actions/prepare-metadata@itch.io-integration
113113
with:
114114
artifactSource:build
115115
projectNameInput:${{ inputs.projectName }}
@@ -157,13 +157,13 @@ jobs:
157157
158158
-name:🔍 Detect Tests-Only Mode
159159
id:tests_only
160-
uses:RedGlow/unity-ci-templates/.github/actions/detect-tests-only@main
160+
uses:RedGlow/unity-ci-templates/.github/actions/detect-tests-only@itch.io-integration
161161
with:
162162
testsOnlyInput:${{ inputs.testsOnly }}
163163

164164
-name:🔍 Detect Skip Tests Flag
165165
id:skip_tests
166-
uses:RedGlow/unity-ci-templates/.github/actions/detect-skip-tests@main
166+
uses:RedGlow/unity-ci-templates/.github/actions/detect-skip-tests@itch.io-integration
167167
with:
168168
skipTestsInput:${{ inputs.skipTests }}
169169
skipTestsRepoVar:${{ steps.metadata.outputs.excludeUnityTests }}

‎.github/workflows/step-1-test.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
has_playmode:${{ steps.detect.outputs.has_playmode }}
7272
steps:
7373
-id:detect
74-
uses:RedGlow/unity-ci-templates/.github/actions/detect-tests-existence@main
74+
uses:RedGlow/unity-ci-templates/.github/actions/detect-tests-existence@itch.io-integration
7575
with:
7676
editModePath:${{ inputs.editModePath }}
7777
playModePath:${{ inputs.playModePath }}

‎.github/workflows/step-2-build.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,15 +111,15 @@ jobs:
111111

112112
-name:Resolve Build Profile
113113
id:resolve_build_profile
114-
uses:RedGlow/unity-ci-templates/.github/actions/resolve-build-profile@main
114+
uses:RedGlow/unity-ci-templates/.github/actions/resolve-build-profile@itch.io-integration
115115
with:
116116
buildTarget:${{ matrix.buildTarget }}
117117
buildType:${{ inputs.buildType }}
118118
unityVersion:${{ inputs.unityVersion }}
119119

120120
-name:Resolve Unity Run Parameters
121121
id:resolve_run_parameters
122-
uses:RedGlow/unity-ci-templates/.github/actions/resolve-unity-run-parameters@main
122+
uses:RedGlow/unity-ci-templates/.github/actions/resolve-unity-run-parameters@itch.io-integration
123123
with:
124124
buildTarget:${{ matrix.buildTarget }}
125125

‎.github/workflows/step-3-release.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ jobs:
5959

6060
-name:📝 Create GitHub Release
6161
id:create_release
62-
uses:RedGlow/unity-ci-templates/.github/actions/create-release@main
62+
uses:RedGlow/unity-ci-templates/.github/actions/create-release@itch.io-integration
6363
with:
6464
version:${{ inputs.buildVersion }}
6565
githubToken:${{ secrets.GITHUB_TOKEN }}
6666

6767
-name:🧮 Upload Per-Platform Artifacts
68-
uses:RedGlow/unity-ci-templates/.github/actions/upload-per-build-target-artifacts@main
68+
uses:RedGlow/unity-ci-templates/.github/actions/upload-per-build-target-artifacts@itch.io-integration
6969
with:
7070
project:${{ inputs.projectName }}
7171
version:${{ inputs.buildVersion }}

‎.github/workflows/step-4-deploy.yml‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
ARTIFACT_DIR:deployment-artifacts/${{ inputs.projectName }}-${{ inputs.buildVersion }}
8787
steps:
8888
-name:📥 Retrieve Artifacts from Release
89-
uses:RedGlow/unity-ci-templates/.github/actions/download-from-release@main
89+
uses:RedGlow/unity-ci-templates/.github/actions/download-from-release@itch.io-integration
9090
with:
9191
projectName:${{ inputs.projectName }}
9292
version:${{ inputs.buildVersion }}
@@ -105,7 +105,7 @@ jobs:
105105

106106
-name:📥 Retrieve Artifacts from Build (Per-Build-Target)
107107
if:${{ inputs.artifactSource == 'build' && inputs.hasCombinedArtifacts == 'false' }}
108-
uses:RedGlow/unity-ci-templates/.github/actions/download-per-build-target-artifacts-from-build@main
108+
uses:RedGlow/unity-ci-templates/.github/actions/download-per-build-target-artifacts-from-build@itch.io-integration
109109
with:
110110
artifactDir:${{ env.ARTIFACT_DIR }}
111111
projectName:${{ inputs.projectName }}
@@ -116,7 +116,7 @@ jobs:
116116

117117
-name:🛠️ Normalize Artifact Layout (Release Per-Build-Target Only)
118118
if:${{ inputs.artifactSource == 'release' && inputs.hasCombinedArtifacts == 'false' }}
119-
uses:RedGlow/unity-ci-templates/.github/actions/normalize-artifact-layout@main
119+
uses:RedGlow/unity-ci-templates/.github/actions/normalize-artifact-layout@itch.io-integration
120120
with:
121121
artifactDir:${{ env.ARTIFACT_DIR }}
122122

@@ -134,13 +134,13 @@ jobs:
134134
135135
-name:🔎 Detect WebGL Compression Format
136136
id:detect-compression
137-
uses:RedGlow/unity-ci-templates/.github/actions/detect-webgl-compression@main
137+
uses:RedGlow/unity-ci-templates/.github/actions/detect-webgl-compression@itch.io-integration
138138
with:
139139
artifactDir:${{ env.ARTIFACT_DIR }}
140140

141141
-name:🩹 Patch & Decompress Unity WebGL for GitHub Pages
142142
if:${{ matrix.target == 'gh-pages' && steps.detect-compression.outputs.needs_patch == 'true' }}
143-
uses:RedGlow/unity-ci-templates/.github/actions/patch-webgl-for-gh-pages@main
143+
uses:RedGlow/unity-ci-templates/.github/actions/patch-webgl-for-gh-pages@itch.io-integration
144144
with:
145145
artifactDir:${{ env.ARTIFACT_DIR }}
146146

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp