13 lines
194 B
Bash
13 lines
194 B
Bash
#!/bin/sh
|
|
|
|
|
|
# create git-hash.html
|
|
echo "<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Git Hash</title>
|
|
</head>
|
|
<body>
|
|
<pre>GITHUB_SHA = '$GITHUB_SHA';</pre>
|
|
</body>
|
|
</html>" > dist/git-hash.html |