Skip to content

Commit

Permalink
Fix not being able to substitute the game type
Browse files Browse the repository at this point in the history
  • Loading branch information
Garanas committed Aug 9, 2024
1 parent cd31975 commit 9b7492f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-faf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
run: |
COMMITHASH=$(git rev-parse HEAD)
sed -i "s/local Commit = 'unknown'/local Commit = \"${COMMITHASH}\"/" "lua/version.lua"
sed -i "s/local GameType = \'unknown\'/local GameType = \"FAF\"/" "lua/version.lua"
sed -i "s/local GameType = 'unknown'/local GameType = \"FAF\"/" "lua/version.lua"
# debugging
cat lua/version.lua
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-fafbeta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
run: |
COMMITHASH=$(git rev-parse HEAD)
sed -i "s/local Commit = 'unknown'/local Commit = \"${COMMITHASH}\"/" "lua/version.lua"
sed -i "s/local GameType = \'unknown\'/local GameType = \"FAF Beta Balance\"/" "lua/version.lua"
sed -i "s/local GameType = 'unknown'/local GameType = \"FAF Beta Balance\"/" "lua/version.lua"
# debugging
cat lua/version.lua
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-fafdevelop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
run: |
COMMITHASH=$(git rev-parse HEAD)
sed -i "s/local Commit = 'unknown'/local Commit = \"${COMMITHASH}\"/" "lua/version.lua"
sed -i "s/local GameType = \'unknown\'/local GameType = \"FAF Develop\"/" "lua/version.lua"
sed -i "s/local GameType = 'unknown'/local GameType = \"FAF Develop\"/" "lua/version.lua"
# debugging
cat lua/version.lua
Expand Down

0 comments on commit 9b7492f

Please sign in to comment.