diff options
author | Carlo Sala <carlosalag@protonmail.com> | 2023-06-02 21:37:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-02 21:37:48 +0200 |
commit | 6101106916147b1716ff2d5de4a53260e7607bae (patch) | |
tree | 57eb922a1c7f0a9fb70fd69840fa0be25c38597a /.github/workflows/installer/vercel.json | |
parent | 00241073105643874531e1826b7df6d2cb3cadfb (diff) | |
download | zsh-6101106916147b1716ff2d5de4a53260e7607bae.tar.gz zsh-6101106916147b1716ff2d5de4a53260e7607bae.tar.bz2 zsh-6101106916147b1716ff2d5de4a53260e7607bae.zip |
feat(install): deploy installer to install.ohmyz.sh (#11722)
Co-authored-by: Marc Cornellà <hello@mcornella.com>
Diffstat (limited to '.github/workflows/installer/vercel.json')
-rw-r--r-- | .github/workflows/installer/vercel.json | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/installer/vercel.json b/.github/workflows/installer/vercel.json new file mode 100644 index 000000000..8c5aec5e0 --- /dev/null +++ b/.github/workflows/installer/vercel.json @@ -0,0 +1,14 @@ +{ + "headers": [ + { + "source": "/((?!favicon.ico).*)", + "headers": [{ "key": "Content-Type", "value": "text/plain" }] + } + ], + "rewrites": [ + { + "source": "/((?!favicon.ico|install.sh).*)", + "destination": "/install.sh" + } + ] +} |