mirror of
https://github.com/cycjimmy/semantic-release-action.git
synced 2026-04-07 14:36:53 +00:00
9 lines
188 B
JavaScript
9 lines
188 B
JavaScript
const io = require('@actions/io');
|
|
|
|
/**
|
|
* Clean up `.npmrc` file in the repo after releasing
|
|
* @returns {Promise<never>}
|
|
*/
|
|
module.exports = async () => {
|
|
await io.rmRF('.npmrc');
|
|
};
|