react-code-dataset / wp-calypso /bin /get-circle-string-artifact-url
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
#!/usr/bin/env node
// This script will return a url of the calypso-strings.pot file generated in our latest trunk build.
// eg: node bin/get-circle-string-artifact-url | xargs curl
const getCircleArtifactUrl = require( './get-circle-artifact-url' );
( async function main() {
await getCircleArtifactUrl( /\/calypso-strings\.pot$/ );
} )();