Skip to content

Commit

Permalink
ci: remove release workflow to use the one that is global (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
derberg authored Jan 22, 2021
1 parent f172df3 commit be4237a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 79 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
uses: actions/checkout@v2
- name: Get version from package.json before release step
id: extractver
run: echo "::set-output name=version::$(npm run get-version --silent)"
run: echo "::set-output name=version::$(npm run get:version --silent)"
- name: Get name of package from package.json
id: extractname
run: echo "::set-output name=packname::$(npm run get-name --silent)"
run: echo "::set-output name=packname::$(npm run get:name --silent)"
- if: startsWith(github.event.commits[0].message, 'chore(release):')
name: Bumping latest version of this package in other repositories
uses: derberg/org-projects-dependency-manager@v1
Expand Down
24 changes: 0 additions & 24 deletions .github/workflows/pull-request-testing.yml

This file was deleted.

51 changes: 0 additions & 51 deletions .github/workflows/release.yml

This file was deleted.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@
"test": "mocha --recursive",
"release": "semantic-release",
"lint": "eslint --max-warnings 0 --config .eslintrc .",
"get-version": "echo $npm_package_version",
"get-name": "echo $npm_package_name"
"get:version": "echo $npm_package_version",
"get:name": "echo $npm_package_name",
"generate:assets": "echo 'No additional assets need to be generated at the moment'",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit be4237a

Please sign in to comment.