Error in github actions after adding Sentry to project

Ok I figured out my problem. I had the wrong information in the wrong file.

Step 3 of .sentryclirc should have been:

[defaults]
project=yoursentryproject
org=yoursentryorg

[auth]
token=sentrytoken

And I needed another step for a vue.config.js (instead of webpack.config.js) with the following:

/* eslint-disable @typescript-eslint/no-var-requires */

const Package = require('./package.json');
const SentryWebpackPlugin = require('@sentry/webpack-plugin');
const plugins = [
	new SentryWebpackPlugin({
		include: './dist',
		ignoreFile: '.sentrycliignore',
		ignore: ['node_modules', 'vue.config.js'],
    release: Package.version
	}),
];
module.exports = {
	configureWebpack: {
    devtool: 'source-map',
		plugins,
	},
};