Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
robomics committed Oct 28, 2022
1 parent 721526e commit ef72914
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -213,9 +213,11 @@ jobs:
if: github.event_name == 'release'

steps:
- name: Get current Cryptonite tag
- name: Get release tag
id: get-tag
run: echo "tag=${GITHUB_REF#refs/*/v}" >> "$GITHUB_OUTPUTS"
run: |
tag="${{ github.event.release.tag_name }}"
echo "tag=${tag#v}" >> "$GITHUB_OUTPUTS"
- name: Download Cryptonite from PyPI
run: |
Expand Down

0 comments on commit ef72914

Please sign in to comment.