Skip to content

Commit

Permalink
Merge branch 'main' into feat/wizarding-v3
Browse files Browse the repository at this point in the history
  • Loading branch information
senzacionale authored Mar 1, 2025
2 parents d69a174 + f2e6a1d commit 45d2499
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 38 deletions.
38 changes: 0 additions & 38 deletions .github/workflows/attach-release-assets.yml

This file was deleted.

16 changes: 16 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,19 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
if: ${{ steps.release.outputs.releases_created }}

- name: Build Distribution
if: ${{ steps.release.outputs.releases_created }}
run: cd packages/distribution && npm run build

- name: Create and Zip Build Assets
if: ${{ steps.release.outputs.releases_created }}
run: |
zip -r open-scd.zip ./packages/distribution/build/*
tar -czvf open-scd.tar.gz ./packages/distribution/build/*
- name: Upload Build Assets
if: ${{ steps.release.outputs.releases_created }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload ${{ steps.release.outputs.tag_name }} open-scd.zip open-scd.tar.gz

0 comments on commit 45d2499

Please sign in to comment.