Skip to content

Commit

Permalink
Update test_env.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
alextrevisan committed Jul 20, 2024
1 parent b89600a commit 2ccaacb
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions .github/workflows/test_env.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
name: test env

on:
push:
tags:
- '*'
jobs:
github-example-tags:
steps:
- name: GitHub Tag Name example
run: |
echo "Tag name from GITHUB_REF_NAME: $GITHUB_REF_NAME"
echo "Tag name from github.ref_name: ${{ github.ref_name }}"
push:
tags:
- 'CP/v[0-9]+.[0-9]+.[0-9]+'
jobs:
github-example-tags:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- name: Configure user
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 2ccaacb

Please sign in to comment.