{"id":15042455,"url":"https://github.com/yosephks/moralis-deploy-action","last_synced_at":"2025-04-14T20:34:16.081Z","repository":{"id":43108715,"uuid":"451024764","full_name":"YosephKS/moralis-deploy-action","owner":"YosephKS","description":"Custom GitHub Actions to help you build CI/CD workflow to deploy JS/TS projects to Moralis server.","archived":false,"fork":false,"pushed_at":"2022-01-25T07:50:20.000Z","size":43,"stargazers_count":5,"open_issues_count":0,"forks_count":4,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-28T08:51:15.727Z","etag":null,"topics":["bash","bash-script","cicd","cli","docker","github-actions","javascri","javascript","moralis","nodejs","npm","static-hosting","typescript","web3"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/moralis-deploy-action","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/YosephKS.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-01-23T06:38:27.000Z","updated_at":"2024-08-06T02:27:29.000Z","dependencies_parsed_at":"2023-01-11T17:22:21.457Z","dependency_job_id":null,"html_url":"https://github.com/YosephKS/moralis-deploy-action","commit_stats":{"total_commits":32,"total_committers":2,"mean_commits":16.0,"dds":0.21875,"last_synced_commit":"1ef163b5e210517d9d50d6af6227e93b9abb1b34"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YosephKS%2Fmoralis-deploy-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YosephKS%2Fmoralis-deploy-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YosephKS%2Fmoralis-deploy-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YosephKS%2Fmoralis-deploy-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/YosephKS","download_url":"https://codeload.github.com/YosephKS/moralis-deploy-action/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248956631,"owners_count":21189383,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bash","bash-script","cicd","cli","docker","github-actions","javascri","javascript","moralis","nodejs","npm","static-hosting","typescript","web3"],"created_at":"2024-09-24T20:47:20.406Z","updated_at":"2025-04-14T20:34:16.060Z","avatar_url":"https://github.com/YosephKS.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://moralis.io/wp-content/uploads/2021/04/Moralis-Logo.svg\" height=\"100px\"/\u003e \n  \u003cimg src=\"https://avatars0.githubusercontent.com/u/44036562?s=100\u0026v=4\"/\u003e \n\u003c/p\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \n\u003ca href=\"\"\u003e[![Deployment](https://github.com/YosephKS/moralis-deploy-action/actions/workflows/main.yml/badge.svg?branch=main)](https://github.com/YosephKS/moralis-deploy-action/actions/workflows/main.yml)\u003c/a\u003e\n\u003ca href=\"\"\u003e[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)](code_of_conduct.md)\u003c/a\u003e\n\n\u003c/div\u003e\n\n# Moralis Deploy GitHub Action\n\nCustom GitHub Actions to help you build CI/CD workflow to deploy JS/TS projects to Moralis server.\n\n### Table of Contents\n- [👨‍💻 Supported Frameworks](#-supported-frameworks)\n- [🏗️ Usage](#%EF%B8%8F-usage)\n- [🏭 Environment Varialbes](#-environment-variables)\n- [🛠️ Contributing](#%EF%B8%8F-contributing)\n- [📄 License](#-license)\n\n### 👨‍💻 Supported Frameworks\n\n- Vanilla Javascript\n- React\n\n### 🏗️ Usage\n\nNote that this custom GitHub Action is tested to be working only with Vanilla Javascript and React project. For Vanilla, checkout [main.yml](https://github.com/YosephKS/moralis-deploy-action/blob/main/.github/workflows/main.yml) within this repository. For React, checkout an example [here](https://github.com/YosephKS/moralis-deploy-action-react-example/blob/main/.github/workflows/main.yml)\n\n```yml\nname: Moralis Deploy\non: [push]\njobs:\n  deploy:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v2\n      - name: Deploy\n        uses: YosephKS/moralis-deploy-action@\u003cversion\u003e\n        env:\n          MORALIS_API_KEY: ${{ secrets.MORALIS_API_KEY }}\n          MORALIS_API_SECRET: ${{ secrets.MORALIS_API_SECRET }}\n          MORALIS_API_SUBDOMAIN: ${{ secrets.MORALIS_API_SUBDOMAIN }}\n          CUSTOM_FOLDER_PATH: ${{ secrets.CUSTOM_FOLDER_PATH }}\n```\n\n### 🏭 Environment Variables\n\nThe environment variables need to be stored in the repository's secrets. To get the value of the required environment variables, sign up for a free acccount [here](https://admin.moralis.io/register) and create a new server.\n\n- `MORALIS_API_KEY` **(required)**: Get `CLI API Key` value\n- `MORALIS_API_SECRET` **(required)**: Get `CLI API Secret` value\n- `MORALIS_API_SUBDOMAIN` **(required)**: Get subdomain from the `Server URL`, e.g.If *https://yjf6ilbm7qh5.usemoralis.com:2053/server* is your Server URL, then the subdomain value will be `yjf6ilbm7qh5.usemoralis.com`\n- `CUSTOM FOLDER_PATH`: The path to where your build folder (containing `index.html`) is located; If no value is provided then it defaults to the root folder.\n\n### 🛠️ Contributing\n\nSee [CONTRIBUTING.md](https://github.com/YosephKS/moralis-deploy-action/blob/main/CONTRIBUTING.md)\n\n### 📄 License\n[GNU Affero General Public License](https://github.com/YosephKS/moralis-deploy-action/blob/main/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyosephks%2Fmoralis-deploy-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyosephks%2Fmoralis-deploy-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyosephks%2Fmoralis-deploy-action/lists"}