Skip to content

Commit

Permalink
Use dates instead of tags for plugin build names
Browse files Browse the repository at this point in the history
This makes more sense for this repo, since tags are plugin-specific and
this repo bundles multiple plugins.
  • Loading branch information
robbert-vdh committed Dec 6, 2023
1 parent 105a46d commit e211029
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e211029

Please sign in to comment.