Add link from container analysis FAQ to diagnostics. #40
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: Update Version Tag | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
update-version-tag: | |
runs-on: ubuntu-latest | |
env: | |
# This is the tag that will be kept up to date with master. | |
DOC_VERSION: v7.0.0 | |
# Don't update the tag at the same time another update is running. | |
concurrency: update-version-tag | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Tag Repo | |
uses: richardsimko/update-tag@v1 | |
with: | |
tag_name: ${{ env.DOC_VERSION }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |