Skip to content

[smith-waterman] Support Intel OFS IA-420F/R0 and OFS IA-840F/R0 FPGA… #15

[smith-waterman] Support Intel OFS IA-420F/R0 and OFS IA-840F/R0 FPGA…

[smith-waterman] Support Intel OFS IA-420F/R0 and OFS IA-840F/R0 FPGA… #15

Workflow file for this run

name: Release
on:
push:
branches:
- master
paths:
- charts/**
jobs:
pipeline:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
- name: Import GPG key
run: |
echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --dearmor --output keyring.gpg
echo "${{ secrets.PASSPHRASE }}" > passphrase-file.txt
- name: Set up Helm
uses: azure/setup-helm@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Release charts
uses: helm/chart-releaser-action@v1.4.1
env:
CR_KEY: InAccel <info@inaccel.com>
CR_KEYRING: keyring.gpg
CR_PASSPHRASE_FILE: passphrase-file.txt
CR_SIGN: true
CR_TOKEN: ${{ secrets.GITHUB_TOKEN }}