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 a4a75bf commit ce389e2Copy full SHA for ce389e2
.github/workflows/release.yml
@@ -57,9 +57,16 @@ jobs:
57
# badge in the readme
58
CHART_VERSION=$(cat charts/scalyr-agent/Chart.yaml | grep "version: " | sed "s/version: //g" | tr -d "\n")
59
60
+ cp README.md /tmp/README.md
61
+
62
git fetch origin
63
git checkout gh-pages
64
65
+ echo "Copying over README.md from main branch"
66
+ cp /tmp/README.md README.md
67
+ git add README.md
68
+ git commit -m "Update README.md file" || true
69
70
echo "File content before update"
71
cat info.json
72
0 commit comments