Skip to content

Commit

Permalink
check ref_name
Browse files Browse the repository at this point in the history
  • Loading branch information
lbluque committed May 13, 2024
1 parent 8d77050 commit 5f79294
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ on:
description: "if true a release is made on PyPI"

jobs:
test:
uses: ./.github/workflows/test.yml
secrets: inherit
# test:
# uses: ./.github/workflows/test.yml
# secrets: inherit

build:
needs: test
Expand All @@ -29,6 +29,15 @@ jobs:
# uses: ./.github/workflows/docs.yml
# secrets: inherit

ref_name:
runs-on: ubuntu-latest
steps:
- name: Echo
run: |
echo ${{ github.ref_name }}
echo $GITHUB_REF_NAME
echo ${{ github.event.release.tag_name }}
release-core-pypi:
needs: [ build ]
runs-on: ubuntu-latest
Expand Down

0 comments on commit 5f79294

Please sign in to comment.