Heat Map Feature #3
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 | |
permissions: | |
contents: write | |
steps: | |
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" | |
uses: actions/checkout@v3 | |
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: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
- 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: ${{ github.token }} |