Trying w/ root paths now
This commit is contained in:
@ -87,7 +87,7 @@ jobs:
|
|||||||
name: Steam Publish
|
name: Steam Publish
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
container:
|
container:
|
||||||
image: cm2network/steamcmd
|
image: cm2network/steamcmd:root
|
||||||
needs: [export-windows, export-linux]
|
needs: [export-windows, export-linux]
|
||||||
steps:
|
steps:
|
||||||
# Need to install nodejs and git, and initalize git lfs for checkout
|
# Need to install nodejs and git, and initalize git lfs for checkout
|
||||||
@ -130,14 +130,14 @@ jobs:
|
|||||||
- name: Read Cache
|
- name: Read Cache
|
||||||
run: |
|
run: |
|
||||||
mkdir -p ./steam_cache
|
mkdir -p ./steam_cache
|
||||||
mkdir -p /home/steam/Steam/config
|
mkdir -p /root/Steam/config
|
||||||
cp ./steam_cache/config.vdf /home/steam/Steam/config/ 2>/dev/null || echo "No cached config file"
|
cp ./steam_cache/config.vdf /root/Steam/config/ 2>/dev/null || echo "No cached config file"
|
||||||
cp ./steam_cache/ssfn* /home/steam/Steam/ 2>/dev/null || echo "No cached sentry file"
|
cp ./steam_cache/ssfn* /root/Steam/ 2>/dev/null || echo "No cached sentry file"
|
||||||
|
|
||||||
echo "Files in cache:"
|
echo "Files in cache:"
|
||||||
ls -la ./steam_cache/ 2>/dev/null || echo "No cache directory"
|
ls -la ./steam_cache/ 2>/dev/null || echo "No cache directory"
|
||||||
echo "Files in Steam directory:"
|
echo "Files in Steam directory:"
|
||||||
ls -la /home/steam/Steam/ 2>/dev/null || echo "No Steam directory"
|
ls -la /root/Steam/ 2>/dev/null || echo "No Steam directory"
|
||||||
|
|
||||||
- name: Update VDF
|
- name: Update VDF
|
||||||
run: |
|
run: |
|
||||||
@ -160,15 +160,15 @@ jobs:
|
|||||||
mkdir -p ./steam_cache
|
mkdir -p ./steam_cache
|
||||||
|
|
||||||
# Debug: Show all files in Steam directory
|
# Debug: Show all files in Steam directory
|
||||||
echo "All files in /home/steam/Steam:"
|
echo "All files in /root/Steam:"
|
||||||
find /home/steam/Steam -type f -name "*" 2>/dev/null | head -20
|
find /root/Steam -type f -name "*" 2>/dev/null | head -20
|
||||||
|
|
||||||
# Copy config file
|
# Copy config file
|
||||||
cp /home/steam/Steam/config/config.vdf ./steam_cache/ 2>/dev/null || echo "No config file to cache"
|
cp /root/Steam/config/config.vdf ./steam_cache/ 2>/dev/null || echo "No config file to cache"
|
||||||
|
|
||||||
# Look for sentry files in various locations
|
# Look for sentry files in various locations
|
||||||
cp /home/steam/Steam/ssfn* ./steam_cache/ 2>/dev/null || echo "No sentry files in /home/steam/Steam/"
|
cp /root/Steam/ssfn* ./steam_cache/ 2>/dev/null || echo "No sentry files in /root/Steam/"
|
||||||
cp /home/steam/Steam/config/ssfn* ./steam_cache/ 2>/dev/null || echo "No sentry files in /home/steam/Steam/config/"
|
cp /root/Steam/config/ssfn* ./steam_cache/ 2>/dev/null || echo "No sentry files in /root/Steam/config/"
|
||||||
|
|
||||||
echo "Files cached:"
|
echo "Files cached:"
|
||||||
ls -la ./steam_cache/ 2>/dev/null || echo "No cache directory"
|
ls -la ./steam_cache/ 2>/dev/null || echo "No cache directory"
|
||||||
Reference in New Issue
Block a user