Skip to content

Commit

Permalink
Modified workflow to remove the steps for changing to the dist direct…
Browse files Browse the repository at this point in the history
…ory, cleaning up before zipping, and creating a zip file.
  • Loading branch information
ncx-kevinCefalu committed Sep 28, 2023
1 parent 126aa74 commit a48368e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,6 @@ jobs:
# Build artifact
npm run build;
# Change to dist directory
cd dist;
# Cleanup before zipping
rm ${{ env.PLUGIN_NAME }}/versions.json;
# Create zip file
zip -r ${{ env.PLUGIN_NAME }}.zip ${{ env.PLUGIN_NAME }};
- name: 📦 Prepare Artifact
working-directory: dist
run: |
Expand Down
6 changes: 6 additions & 0 deletions scripts/createTag.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

$tagVersion = gitversion /showvariable FullSemVer;

git tag $tagVersion;

git push --tags;

0 comments on commit a48368e

Please sign in to comment.