Skip to content

Commit

Permalink
fix: upgrade xml-disassembler
Browse files Browse the repository at this point in the history
  • Loading branch information
mcarvin8 committed Dec 15, 2024
1 parent 58e8ecc commit 04dfe2e
Show file tree
Hide file tree
Showing 6 changed files with 116 additions and 3,070 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@ on:
push:
branches-ignore:
- main
- beta

jobs:
build:
name: Build
runs-on: ubuntu-latest

steps:
- uses: pnpm/action-setup@v2.4.0
- uses: pnpm/action-setup@v4.0.0
with:
version: 8

Expand Down
29 changes: 21 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,40 +3,53 @@ on:
push:
branches:
- main
- beta

workflow_dispatch:
permissions:
contents: write
pull-requests: write

jobs:
release:
name: Release
runs-on: ubuntu-latest

steps:
- uses: pnpm/[email protected]
- name: Release Please
id: release
uses: googleapis/release-please-action@v4
with:
release-type: node

- uses: pnpm/[email protected]
with:
version: 8
if: ${{ steps.release.outputs.release_created == 'true' }}

- name: Checkout
uses: actions/[email protected]
if: ${{ steps.release.outputs.release_created == 'true' }}

- name: Setup Node
uses: actions/[email protected]
with:
node-version: 18
cache: pnpm
registry-url: "https://registry.npmjs.org"
if: ${{ steps.release.outputs.release_created == 'true' }}

- name: Install Dependencies
run: pnpm install
if: ${{ steps.release.outputs.release_created == 'true' }}

- name: Build
run: pnpm build
if: ${{ steps.release.outputs.release_created == 'true' }}

- name: Test
run: pnpm test
if: ${{ steps.release.outputs.release_created == 'true' }}

- name: Semantic Release
- name: Publish to NPM
run: npm publish --access public --tag latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
if: ${{ steps.release.outputs.release_created == 'true' }}
28 changes: 0 additions & 28 deletions .releaserc.json

This file was deleted.

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
<!-- markdownlint-disable MD024 MD025 -->
<!-- markdown-link-check-disable -->

# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [1.1.1](https://github.com/mcarvin8/xml2json-disassembler/compare/v1.1.0...v1.1.1) (2024-05-22)

### Bug Fixes
Expand Down
9 changes: 1 addition & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,6 @@
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.19",
Expand All @@ -46,7 +40,6 @@
"lint-staged": "^15.2.0",
"prettier": "3.2.4",
"rollup": "^4.9.6",
"semantic-release": "^17.4.7",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
Expand All @@ -55,7 +48,7 @@
"ignore": "^5.3.1",
"log4js": "^6.9.1",
"tslib": "^2.6.2",
"xml-disassembler": "^1.3.1"
"xml-disassembler": "^1.3.4"
},
"repository": {
"type": "git",
Expand Down
Loading

0 comments on commit 04dfe2e

Please sign in to comment.