We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20bb83e commit 6f7cb18Copy full SHA for 6f7cb18
.github/workflows/build_server.yml
@@ -122,6 +122,15 @@ jobs:
122
echo "🔍 Debug: Environment tag: $ENV_TAG"
123
echo "🔍 Debug: Commit SHA: $SHA"
124
125
+ # First, verify we can pull images on the VPS
126
+ echo "🔍 Verifying images on VPS..."
127
+ ssh streameth@145.223.118.217 "
128
+ echo '🔑 Logging into GitHub Container Registry...' && \
129
+ echo '${{ secrets.TOKEN }}' | docker login ghcr.io -u ${{ github.actor }} --password-stdin && \
130
+ echo '🔍 Attempting to pull server image...' && \
131
+ docker pull ghcr.io/streamethorg/streameth-platform/server:${ENV_TAG}-${SHA}
132
+ "
133
+
134
# Create Python script to process the YAML
135
echo "📝 Creating Python script..."
136
cat << EOF > process_compose.py
0 commit comments