3838
3939 - name : generate salt include file from secret
4040 run : |
41- printf "Salt = '%s';" "${{ secrets.Salt }}" > code/salt.inc
41+ printf "Salt = '%s';" "${{ secrets.SALT }}" > code/salt.inc
4242
4343 # We use "cge-unstable" Docker image, that already contains
4444 # Castle Game Engine sources and build tools.
6161 run : castle-engine package --os=win64 --cpu=x86_64 --verbose
6262 - name : Archive Artifacts
6363 # See https://github.com/actions/upload-artifact
64- uses : actions/upload-artifact@v5
64+ uses : actions/upload-artifact@v6
6565 with :
6666 name : windows-build
6767 # Note: Keep paths that start with asterisk in double qoutes, to avoid misinterpreting as YAML reference.
7373 - name : Package Linux
7474 run : castle-engine package --os=linux --cpu=x86_64 --verbose
7575 - name : Archive Artifacts
76- uses : actions/upload-artifact@v5
76+ uses : actions/upload-artifact@v6
7777 with :
7878 name : linux-build
7979 path : " *-linux-x86_64.tar.gz"
9393 - name : Package Android
9494 run : castle-engine package --target=android --verbose
9595 - name : Archive Artifacts
96- uses : actions/upload-artifact@v5
96+ uses : actions/upload-artifact@v6
9797 with :
9898 name : android-build
9999 path : " *.apk"
@@ -106,7 +106,7 @@ jobs:
106106 needs : [build-using-docker]
107107 steps :
108108 - name : Download packaged releases
109- uses : actions/download-artifact@v5
109+ uses : actions/download-artifact@v6
110110 with :
111111 merge-multiple : true
112112 - name : List downloaded files
0 commit comments