add(helm): extra volumes and volume-mounts #5
Workflow file for this run
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: Tags | |
on: | |
release: | |
types: [published] # This makes it run only when a new released is published | |
jobs: | |
latest-release: | |
name: Add/update tag to new release | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
submodules: recursive | |
- name: Check for latest tag | |
id: latest-tag | |
run: | | |
source ./scripts/tag_latest_release.sh $(echo ${{ github.event.release.tag_name }}) --dry-run | |
- name: Run latest-tag | |
uses: ./.github/actions/latest-tag | |
if: (! ${{ steps.latest-tag.outputs.SKIP_TAG }} ) | |
with: | |
description: Superset latest release | |
tag-name: latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |