Skip to content

Commit

Permalink
adding runtime-version inputs to get full version number from GM repo (
Browse files Browse the repository at this point in the history
  • Loading branch information
ksuchitra532 authored Feb 27, 2025
1 parent 86786a3 commit f897401
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 42 deletions.
18 changes: 7 additions & 11 deletions .github/workflows/Beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ on:
EXTRA_PARAMS:
description: "EXTRA_PARAMS from config"
required: false
type: string
type: string
RUNTIME_VERSION:
description: "Full Runtime Version"
required: true
type: string

jobs:

Expand All @@ -38,16 +42,8 @@ jobs:
if: always()
uses: actions/upload-artifact@v4
with:
name: summary_file
path: ${{ github.workspace }}\GM-TF\results
- name: Download Runtime Build Number
uses: dawidd6/action-download-artifact@v3
with:
name: buildnumber
path: ${{ github.workspace }}\GM-TF
workflow: Zeus-Runtime-Beta.yml
repo: YoYoGames/GameMaker
github_token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
name: summary_file-${{ github.event.inputs.RUNTIME_VERSION }}
path: ${{ github.workspace }}\GM-TF\results
- name: Running TF Compare Script
run: python .\tf_compare.py --github-token ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} --workflow ${{ github.workflow }}.yml
working-directory: GM-TF
Expand Down
10 changes: 1 addition & 9 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: summary_file
path: ${{ github.workspace }}\GM-TF\results
- name: Download Runtime Build Number
uses: dawidd6/action-download-artifact@v3
with:
name: buildnumber
path: ${{ github.workspace }}\GM-TF
workflow: Zeus-Runtime-Red.yml
repo: YoYoGames/GameMaker
github_token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
path: ${{ github.workspace }}\GM-TF\results
- name: Running TF Compare Script
run: python .\tf_compare.py --github-token ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} --workflow ${{ github.workflow }}.yml
working-directory: GM-TF
Expand Down
18 changes: 7 additions & 11 deletions .github/workflows/Monthly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ on:
EXTRA_PARAMS:
description: "EXTRA_PARAMS from config"
required: false
type: string
type: string
RUNTIME_VERSION:
description: "Full Runtime Version"
required: true
type: string

jobs:

Expand All @@ -38,16 +42,8 @@ jobs:
if: always()
uses: actions/upload-artifact@v4
with:
name: summary_file
path: ${{ github.workspace }}\GM-TF\results
- name: Download Runtime Build Number
uses: dawidd6/action-download-artifact@v3
with:
name: buildnumber
path: ${{ github.workspace }}\GM-TF
workflow: Zeus-Runtime-Green.yml
repo: YoYoGames/GameMaker
github_token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
name: summary_file-${{ github.event.inputs.RUNTIME_VERSION }}
path: ${{ github.workspace }}\GM-TF\results
- name: Running TF Compare Script
run: python .\tf_compare.py --github-token ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} --workflow ${{ github.workflow }}.yml
working-directory: GM-TF
Expand Down
18 changes: 7 additions & 11 deletions .github/workflows/Red.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ on:
EXTRA_PARAMS:
description: "EXTRA_PARAMS from config"
required: false
type: string
type: string
RUNTIME_VERSION:
description: "Full Runtime Version"
required: true
type: string

jobs:

Expand All @@ -38,16 +42,8 @@ jobs:
if: always()
uses: actions/upload-artifact@v4
with:
name: summary_file
path: ${{ github.workspace }}\GM-TF\results
- name: Download Runtime Build Number
uses: dawidd6/action-download-artifact@v3
with:
name: buildnumber
path: ${{ github.workspace }}\GM-TF
workflow: Zeus-Runtime-Red.yml
repo: YoYoGames/GameMaker
github_token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
name: summary_file-${{ github.event.inputs.RUNTIME_VERSION }}
path: ${{ github.workspace }}\GM-TF\results
- name: Running TF Compare Script
run: python .\tf_compare.py --github-token ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} --workflow ${{ github.workflow }}.yml
working-directory: GM-TF
Expand Down

0 comments on commit f897401

Please sign in to comment.