Add BioSequences version to tag name

Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>
This commit is contained in:
Thomas A. Christensen II 2022-04-07 18:06:39 -05:00
parent fcda5c073e
commit 647214f479
Signed by: millironx
GPG key ID: 139C07724802BC5D

View file

@ -21,6 +21,9 @@ jobs:
using Pkg using Pkg
Pkg.instantiate() Pkg.instantiate()
Pkg.update()' Pkg.update()'
- id: biosequences_ver
run: |
echo "::set-output name=version::$(julia --project=${GITHUB_WORKSPACE} -e 'using Pkg, UUIDs; println(string(Pkg.dependencies()[UUID("c7e460c6-2fb9-53a9-8c5b-16f535851c63")].version))')"
- id: time - id: time
uses: nanzm/get-time-action@v1.1 uses: nanzm/get-time-action@v1.1
with: with:
@ -37,4 +40,4 @@ jobs:
with: with:
github_token: ${{ secrets.GITHUB_TOKEN }} github_token: ${{ secrets.GITHUB_TOKEN }}
commit_sha: ${{ steps.hash.outputs.long_hash }} commit_sha: ${{ steps.hash.outputs.long_hash }}
custom_tag: ${{ steps.julia_ver.outputs.version }}-${{ steps.hash.outputs.short_hash }} custom_tag: ${{ steps.julia_ver.outputs.version }}-${{ steps.biosequences_ver.outputs.version }}-${{ steps.hash.outputs.short_hash }}