Skip to content

Commit

Permalink
Merge branch 'main' into release-please--branches--main--components--…
Browse files Browse the repository at this point in the history
…how-to
  • Loading branch information
rwv authored Dec 31, 2024
2 parents 0d390a3 + 54c03e8 commit e1cc285
Show file tree
Hide file tree
Showing 3 changed files with 133 additions and 124 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,3 +245,25 @@ jobs:
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

upload-release:
needs: build
runs-on: ubuntu-latest
if: github.event_name == 'release'
permissions:
contents: write
steps:
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: dist
path: dist

- name: Zip dist directory
run: zip -r dist.zip dist

- name: Upload Release Asset
uses: svenstaro/upload-release-action@v2
with:
file: dist.zip
overwrite: true
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@
"dependencies": {
"@unhead/vue": "^1.11.14",
"@vueuse/core": "^12.2.0",
"dompurify": "^3.2.2",
"dompurify": "^3.2.3",
"express": "^4.21.2",
"marked": "^15.0.3",
"marked": "^15.0.4",
"puppeteer": "^23.11.1",
"vite-node": "^2.1.8",
"vue": "^3.5.13",
Expand All @@ -60,15 +60,15 @@
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.3",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.14.0",
"eslint": "^9.17.0",
"eslint-plugin-vue": "^9.30.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"npm-run-all2": "^7.0.1",
"prettier": "^3.3.3",
"prettier": "^3.4.2",
"typescript": "~5.6.3",
"vite": "^6.0.1",
"vite-plugin-vue-devtools": "^7.6.5",
"vite-plugin-vue-devtools": "^7.6.8",
"vue-tsc": "^2.1.10"
},
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee",
Expand Down
Loading

0 comments on commit e1cc285

Please sign in to comment.