11
0
Fork 0
mirror of https://github.com/cycjimmy/semantic-release-action.git synced 2026-04-07 14:36:53 +00:00
semantic-release-action/src/cleanupNpmrc.task.js

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');
};