From e211029979a4a4aaece4e0bc3362c312f4ef92e4 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Wed, 6 Dec 2023 19:21:48 +0100 Subject: [PATCH] Use dates instead of tags for plugin build names This makes more sense for this repo, since tags are plugin-specific and this repo bundles multiple plugins. --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cbb3030c..22f71012 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -88,7 +88,8 @@ jobs: - name: Determine build archive name run: | - echo "ARCHIVE_NAME=nih-plugs-$(git describe --always)-${{ matrix.name }}" >> "$GITHUB_ENV" + # Windows (usually) doesn't like colons in file names + echo "ARCHIVE_NAME=nih-plugs-$(date -u +"%Y-%m-%d-%H%m%S")-${{ matrix.name }}" >> "$GITHUB_ENV" - name: Move all packaged plugin into a directory run: | # GitHub Action strips the top level directory, great, have another one