Skip to content

Commit

Permalink
Use better names for artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
zezic committed Nov 20, 2021
1 parent ba3d60f commit 6fff7de
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,13 @@ jobs:
export RACK_DIR=$HOME/Rack-SDK
make -j dep
make -j dist
- name: Extract slug and version
run: |
echo "PLUGIN_SLUG=$(jq -r '.slug' plugin.json)" >> $GITHUB_ENV
echo "PLUGIN_VERSION=$(jq -r '.version' plugin.json)" >> $GITHUB_ENV
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
path: dist
name: ${{ matrix.config.name }}
path: dist/${{ env.PLUGIN_SLUG }}-${{ env.PLUGIN_VERSION }}-${{ matrix.config.os-slug }}.vcvplugin
name: ${{ env.PLUGIN_SLUG }}-${{ env.PLUGIN_VERSION }}-${{ matrix.config.os-slug }}

0 comments on commit 6fff7de

Please sign in to comment.