feat: mkfs block/inode size options #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: HelmChart Release | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'charts/**' | |
jobs: | |
build-publish: | |
name: "Publish helm chart" | |
timeout-minutes: 10 | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: read | |
packages: write | |
id-token: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Helm | |
uses: azure/setup-helm@v3 | |
with: | |
version: v3.12.2 | |
- name: Install Cosign | |
uses: sigstore/[email protected] | |
- name: Github registry login | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Helm release | |
timeout-minutes: 5 | |
run: make helm-login helm-release | |
env: | |
HELM_TOKEN: ${{ secrets.GITHUB_TOKEN }} |