Skip to content

GH-13 Increase container memory to 128/256 mb & CPU to 1.0/2.0 (Fix #13) #30

GH-13 Increase container memory to 128/256 mb & CPU to 1.0/2.0 (Fix #13)

GH-13 Increase container memory to 128/256 mb & CPU to 1.0/2.0 (Fix #13) #30

Workflow file for this run

# GitHub Actions workflow to automatically deploy the helm chart(s).
name: "Helm"
on:
workflow_dispatch:
push:
branches: [ "main" ]
paths: [ "charts/**" ]
jobs:
deploy:
name: "Deploy"
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: "Checkout repository"
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: "Configure Git"
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: "Install Helm"
uses: azure/setup-helm@v3
with:
version: v3.10.1
- name: "Release"
uses: helm/[email protected]
with:
charts_repo_url: https://helm.reposilite.com
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"