We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b2b277 commit 7b5cb44Copy full SHA for 7b5cb44
.github/workflows/yarn.yml
@@ -44,7 +44,13 @@ jobs:
44
if: ${{ github.ref != 'refs/heads/main' }}
45
uses: canastro/copy-file-action@master
46
with:
47
- source: "template/robots.txt"
+ source: "template/dev/robots.txt"
48
+ target: "build/robots.txt"
49
+ - name: Copy robots.txt to productive envs
50
+ if: ${{ github.ref = 'refs/heads/main' }}
51
+ uses: canastro/copy-file-action@master
52
+ with:
53
+ source: "template/prod/robots.txt"
54
target: "build/robots.txt"
55
- name: Upload artifact
56
uses: actions/upload-artifact@v2
template/robots.txt template/dev/robots.txt
template/prod/robots.txt
@@ -0,0 +1,4 @@
1
+User-agent: *
2
+Disallow: /cloudnet/
3
+Disallow: /repositories/
4
+Disallow: /data/
0 commit comments