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:
parent
105a46d808
commit
e211029979
3
.github/workflows/build.yml
vendored
3
.github/workflows/build.yml
vendored
|
@ -88,7 +88,8 @@ jobs:
|
||||||
|
|
||||||
- name: Determine build archive name
|
- name: Determine build archive name
|
||||||
run: |
|
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
|
- name: Move all packaged plugin into a directory
|
||||||
run: |
|
run: |
|
||||||
# GitHub Action strips the top level directory, great, have another one
|
# GitHub Action strips the top level directory, great, have another one
|
||||||
|
|
Loading…
Reference in a new issue