
Radu Dumitrescu
Sep 18, 2023
Integrating GitHub Actions with DeployApps for CI/CD
Introduction
GitHub Actions provides a powerful and flexible way to set up CI/CD workflows. By integrating it with DeployApps, you ensure that your serverless applications are always up-to-date and deployed seamlessly. This enhances developer productivity and ensures a smoother delivery of features and updates to end-users.
Let’s dive into how you can set up this integration.
Prerequisites:
- A DeployApps account
- A GitHub account and a repository with your DeployApps project
- Familiarity with DeployApps’s CLI tools, especially the genezio deploy command
Step-by-Step Guide:
1. Set up your GitHub repository
If you haven’t already, push your DeployApps project to a GitHub repository.
2. Setting up GitHub Actions:
Navigate to your repository on GitHub, and click on the Actions tab. Start a new workflow by either choosing a template or creating a new one from scratch.
For our purpose, we’ll be creating a simple workflow that triggers on every push to the `main` branch.
name: genezio-workflow
on:
push:
branches:
- main
jobs:
deploy-backend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- uses: Genez-io/genezio-github-action@v1
with:
token: ${{ secrets.GENEZIO_TOKEN }}
- name: Deploy backend
working-directory: ./
run: genezio deploy --stage prod
3. Store genezio Token securely:
To use the genezio deploy command, you need to authenticate to the DeployApps cloud. You should store your DeployApps token keys securely and not hard-code them in the workflow.
You can generate your token using this link: app.genez.io/settings/tokens
Go to your GitHub repository.
Click on Settings > Secrets.
Click New repository secret and name it GENEZIO_TOKEN.
Enter your DeployApps API key as the value.
By referring to it as ${{ secrets.GENEZIO_TOKEN }} in your workflow file, GitHub Actions can securely use it without exposing it in logs or to unauthorized users.
4. Push your changes
With the workflow file added to your repository, push the changes. Now, every time you or someone else pushes to the main branch, the GitHub Actions workflow will trigger and deploy your DeployApps application.
Conclusion
GitHub Actions allows you to automate, customize, and execute software development workflows right in your GitHub repository. Integrating it with DeployApps, you can set up a CI/CD pipeline that seamlessly deploys your serverless applications on DeployApps’s infrastructure.
Article contents
Subscribe to our newsletter
DeployApps is a serverless platform for building full-stack web and mobile applications in a scalable and cost-efficient way.
Related articles
More from Tutorials
Upgrade Your Express.js App: Add a Frontend Seamlessly with DeployApps
Radu Dumitrescu
Sep 27, 2024
Boost Your Productivity: Single-click Deployments with DeployApps’s Enhanced YAML
Andreia Ocanoaia
Sep 24, 2024





