File tree 3 files changed +14
-5
lines changed
3 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 68
68
69
69
- name : Update Version
70
70
working-directory : ./desktop
71
- run : yarn version --new-version ${{ inputs.version }}
71
+ # TODO make sure this commits the version bump
72
+ # after CI is working correctly
73
+ run : yarn version --new-version ${{ inputs.version }} --no-git-tag-version
72
74
73
75
- name : Build and Publish to Github
74
76
working-directory : ./desktop
Original file line number Diff line number Diff line change 42
42
# Ensure the directories exist before extracting builds.
43
43
# - run: mkdir -p builds/darwin
44
44
- run : mkdir -p builds/linux
45
- # - run: mkdir -p builds/win32
45
+ - run : mkdir -p builds/win32
46
46
47
47
# Rewrite the Windows zip to use forward slashes instead of backslashes.
48
48
- name : Convert Windows Archive to Forward Slashes
@@ -57,12 +57,19 @@ jobs:
57
57
- name : Decompress Linux Archive
58
58
run : 7z x artifacts/${{ inputs.zipPrefix }}-linux-x64-${{ inputs.version }}.zip -obuilds/linux
59
59
60
+ - name : Debug Secret Availability
61
+ run : |
62
+ if [ -n "${{ secrets.steamBuildUsername }}" ]; then echo "steamBuildUsername is set"; else echo "steamBuildUsername is NOT set"; fi
63
+ if [ -n "${{ secrets.steamBuildConfigVDF }}" ]; then echo "steamBuildConfigVDF is set"; else echo "steamBuildConfigVDF is NOT set"; fi
64
+ if [ -n "${{ secrets.steamAppID }}" ]; then echo "steamAppID is set"; else echo "steamAppID is NOT set"; fi
65
+
60
66
- name : Publish Builds to Steam
61
67
uses : game-ci/steam-deploy@v3
62
68
with :
69
+ firstDepotIdOverride : 3352782
63
70
username : ${{ secrets.steamBuildUsername }}
64
- configVdf : ${{ secrets.steamBuildConfigVDF }}
65
- appId : ${{ inputs.branch == 'demo' && secrets.steamDemoAppID || secrets.steamAppID }}
71
+ configVdf : " ${{ secrets.steamBuildConfigVDF }}"
72
+ appId : " ${{ inputs.branch == 'demo' && secrets.steamDemoAppID || 3352780 }}"
66
73
buildDescription : ${{ inputs.version }}
67
74
rootPath : builds
68
75
depot1Path : win32
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " geomancer" ,
3
- "version" : " 0.1 .0" ,
3
+ "version" : " 0.0 .0" ,
4
4
"description" : " Worldbuilding tools" ,
5
5
"main" : " index.js" ,
6
6
"author" : " Kenneth Pirman <mail@kenny.wtf>" ,
You can’t perform that action at this time.
0 commit comments