YosephKS / moralis-deploy-action

Custom GitHub Actions to help you build CI/CD workflow to deploy JS/TS projects to Moralis server.

Home Page:https://github.com/marketplace/actions/moralis-deploy-action

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Deployment Contributor Covenant

Moralis Deploy GitHub Action

Custom GitHub Actions to help you build CI/CD workflow to deploy JS/TS projects to Moralis server.

Table of Contents

πŸ‘¨β€πŸ’» Supported Frameworks

  • Vanilla Javascript
  • React

πŸ—οΈ Usage

Note that this custom GitHub Action is tested to be working only with Vanilla Javascript and React project. For Vanilla, checkout main.yml within this repository. For React, checkout an example here

name: Moralis Deploy
on: [push]
jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Deploy
        uses: YosephKS/moralis-deploy-action@<version>
        env:
          MORALIS_API_KEY: ${{ secrets.MORALIS_API_KEY }}
          MORALIS_API_SECRET: ${{ secrets.MORALIS_API_SECRET }}
          MORALIS_API_SUBDOMAIN: ${{ secrets.MORALIS_API_SUBDOMAIN }}
          CUSTOM_FOLDER_PATH: ${{ secrets.CUSTOM_FOLDER_PATH }}

🏭 Environment Variables

The 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 and create a new server.

  • MORALIS_API_KEY (required): Get CLI API Key value
  • MORALIS_API_SECRET (required): Get CLI API Secret value
  • 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
  • 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.

πŸ› οΈ Contributing

See CONTRIBUTING.md

πŸ“„ License

GNU Affero General Public License

About

Custom GitHub Actions to help you build CI/CD workflow to deploy JS/TS projects to Moralis server.

https://github.com/marketplace/actions/moralis-deploy-action

License:GNU Affero General Public License v3.0


Languages

Language:HTML 42.7%Language:Shell 39.2%Language:Dockerfile 18.1%