Skip to content

Commit

Permalink
fix substring extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
bluemaex committed Aug 7, 2023
1 parent 6c99c5a commit 2cc3746
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deployer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
runs-on: ubuntu-latest
name: ⏳ Prepare ${{ inputs.addon }} Release
outputs:
architectures: ${{ steps.info.outputs.architectures }}
release_name: ${{ steps.release_notes.outputs.name }}
release_version: ${{ steps.values.outputs.release_version }}
architectures: ${{ steps.info.outputs.architectures }}
image: ${{ steps.values.outputs.image }}
steps:
- name: ⤵️ Check out the repository
Expand All @@ -48,7 +48,7 @@ jobs:
run: |
date="$(date +"%Y-%m-%dT%H:%M:%SZ")"
version="${{ steps.release_notes.outputs.tag_name }}"
version="${version#*-}"
version="${version##*-}"
echo "Add-on: ${{ inputs.addon }} Version: $version Date: $date"
echo "release_date=$date" >> $GITHUB_OUTPUT
Expand Down

1 comment on commit 2cc3746

@bluemaex
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

re #90

Please sign in to comment.