mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 02:50:54 +01:00
Fix sentry sourcemap upload
This commit is contained in:
parent
af1e7b44cc
commit
ef315bf6b5
1 changed files with 32 additions and 2 deletions
|
@ -6,12 +6,32 @@ const gitCommit = require('child_process')
|
||||||
.execSync('git rev-parse --short HEAD')
|
.execSync('git rev-parse --short HEAD')
|
||||||
.toString()
|
.toString()
|
||||||
.trim();
|
.trim();
|
||||||
|
const gitCommitFull = require('child_process')
|
||||||
|
.execSync('git rev-parse HEAD')
|
||||||
|
.toString()
|
||||||
|
.trim();
|
||||||
|
const gitUrl = require('child_process')
|
||||||
|
.execSync('git remote get-url origin')
|
||||||
|
.toString()
|
||||||
|
.trim();
|
||||||
const gitBranch = require('child_process')
|
const gitBranch = require('child_process')
|
||||||
.execSync('git rev-parse --abbrev-ref HEAD')
|
.execSync('git rev-parse --abbrev-ref HEAD')
|
||||||
.toString()
|
.toString()
|
||||||
.trim();
|
.trim();
|
||||||
|
|
||||||
const releaseName = `fixtweet-${gitBranch}-${gitCommit}-${new Date()
|
// Get worker name from wrangler.toml
|
||||||
|
let workerName = 'fixtweet';
|
||||||
|
|
||||||
|
try {
|
||||||
|
workerName = require('fs')
|
||||||
|
.readFileSync('wrangler.toml')
|
||||||
|
.toString()
|
||||||
|
.match(/name ?= ?"(.+)"/)[1];
|
||||||
|
} catch(e) {
|
||||||
|
console.error(`Error reading wrangler.toml to find worker name, using 'fixtweet' instead.`)
|
||||||
|
}
|
||||||
|
|
||||||
|
const releaseName = `${workerName}-${gitBranch}-${gitCommit}-${new Date()
|
||||||
.toISOString()
|
.toISOString()
|
||||||
.substring(0, 19)}`;
|
.substring(0, 19)}`;
|
||||||
|
|
||||||
|
@ -47,13 +67,23 @@ let plugins = [
|
||||||
if (process.env.SENTRY_AUTH_TOKEN) {
|
if (process.env.SENTRY_AUTH_TOKEN) {
|
||||||
plugins.push(
|
plugins.push(
|
||||||
sentryWebpackPlugin({
|
sentryWebpackPlugin({
|
||||||
release: releaseName,
|
release: {
|
||||||
|
name: releaseName,
|
||||||
|
create: true,
|
||||||
|
vcsRemote: gitUrl,
|
||||||
|
setCommits: {
|
||||||
|
auto: true,
|
||||||
|
ignoreMissing: true
|
||||||
|
}
|
||||||
|
},
|
||||||
include: './dist',
|
include: './dist',
|
||||||
urlPrefix: '~/',
|
urlPrefix: '~/',
|
||||||
ignore: ['node_modules', 'webpack.config.js'],
|
ignore: ['node_modules', 'webpack.config.js'],
|
||||||
authToken: process.env.SENTRY_AUTH_TOKEN
|
authToken: process.env.SENTRY_AUTH_TOKEN
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
} else {
|
||||||
|
console.log('No Sentry auth token found, skipping Sentry release upload.');
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue