1
0
Fork 0

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.
This commit is contained in:
Robbert van der Helm 2023-12-06 19:21:48 +01:00
parent 105a46d808
commit e211029979

View file

@ -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