Skip to content

Commit

Permalink
build(.github): fix debug scope name (leave / alone)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xunnamius committed Jan 2, 2021
1 parent d2cf83f commit de2c7b1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ on:
branches: [main, canary]

env:
# * Debugger verbose output
DEBUG: '*'
# * Selectively enable debugger verbose output in the pipeline
# ? See also: https://www.npmjs.com/package/debug#wildcards
# DEBUG: '@xunnamius/do-not-install:*'
NODE_CURRENT_VERSION: 15.x
NODE_TEST_VERSIONS: '"10.x", "12.x", "14.x"' # * NODE_CURRENT_VERSION included automatically
WEBPACK_TEST_VERSIONS: '"4.x", "5.x"'
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ on:
delete:

env:
# * Debugger verbose output
DEBUG: '*'
# * Selectively enable debugger verbose output in the pipeline
# ? See also: https://www.npmjs.com/package/debug#wildcards
# DEBUG: '@xunnamius/do-not-install:*'
NODE_CURRENT_VERSION: 15.x
IGNORE_TAGS: 'latest' # example: IGNORE_TAGS: 'tag1, tag2, tag-3'
# ! These also have to be updated in .changelogrc.js and cleanup.yml
Expand Down Expand Up @@ -105,7 +106,7 @@ jobs:
key: npm-clean-${{ runner.os }}
path: ~/.npm

- name: Remove any erroneous dist tags
- name: Prune dist tags
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion release.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const debug = require('debug')(
`${require('./package.json').name.replace('/', '-')}:semantic-release-config`
`${require('./package.json').name}:semantic-release-config`
);

const SHOULD_UPDATE_CHANGELOG = process.env.SHOULD_UPDATE_CHANGELOG === 'true';
Expand Down

0 comments on commit de2c7b1

Please sign in to comment.