From 647214f479fb2c616dd05040fce25659c9d7b461 Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Thu, 7 Apr 2022 18:06:39 -0500 Subject: [PATCH] Add BioSequences version to tag name Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com> --- .github/workflows/update.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index da12f18..82c01fc 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -21,6 +21,9 @@ jobs: using Pkg Pkg.instantiate() 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 uses: nanzm/get-time-action@v1.1 with: @@ -37,4 +40,4 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} 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 }}