Skip to content

Update Dockerfile to install necessary libraries and remove SQLite du… #162

Update Dockerfile to install necessary libraries and remove SQLite du…

Update Dockerfile to install necessary libraries and remove SQLite du… #162

Workflow file for this run

name: Helm Release Workflow
on:
push:
paths:
- 'charts/pdp/Chart.yaml'
jobs:
helm-release:
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "elimoshkovich"
git config user.email "[email protected]"
- name: Install Helm
uses: azure/setup-helm@v3
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.PAGES }}"
with:
skip_existing: true
mark_as_latest: false