Skip to content

[blockscout-stack] Adding support for NFT storage #2

[blockscout-stack] Adding support for NFT storage

[blockscout-stack] Adding support for NFT storage #2

Workflow file for this run

name: Pre Release Charts
on:
pull_request:
jobs:
release:
permissions:
contents: write # to push chart release and create a release (helm/chart-releaser-action)
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Fetch history
run: git fetch --prune --unshallow
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Set up Helm
uses: azure/[email protected]
with:
version: v3.11.2
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_SKIP_EXISTING: true
CR_RELEASE_NAME_TEMPLATE: "{{ .Name }}-{{ .Version }}-rc"
CR_MAKE_RELEASE_LATEST: false