Skip to content

Commit

Permalink
Add tag workflow (test)
Browse files Browse the repository at this point in the history
  • Loading branch information
leehart committed Sep 28, 2023
1 parent a05249f commit bb426e1
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/tag_docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: tag_docs
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
tag_docs:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
steps:
- name: Eyeball GitHub tag
run: |
echo "Tag name from GITHUB_REF_NAME: $GITHUB_REF_NAME"
echo "Tag name from github.ref_name: ${{ github.ref_name }}"

0 comments on commit bb426e1

Please sign in to comment.