Skip to content

Commit

Permalink
chore: fix sentry release version name (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashtrindade authored Sep 8, 2024
1 parent c8f080c commit 2dbe843
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
* text=auto

# Source code
*.js text
*.ts text
*.json text
*.js text eol=lf
*.ts text eol=lf
*.json text eol=lf
*.sh text eol=lf
.husky/* text eol=lf

Expand Down
2 changes: 1 addition & 1 deletion .github/SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This project is currently in beta stage and only the latest version is supported

## Reporting a Vulnerability

If you find a security vulnerability in this project, please do not create a public issue or pull request. Instead, send an email to ashtrindade5@gmail.com with the following information:
If you find a security vulnerability in this project, please do not create a public issue or pull request. Instead, send an email to <contact@lunateam.org> with the following information:

- A brief description of the vulnerability
- The steps to reproduce the issue or a proof-of-concept code
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sentry-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ on:

jobs:
create-release:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: getsentry/action-release@v1
with:
environment: 'production'
environment: "production"
version: ${{ github.ref }}
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
Expand Down
3 changes: 2 additions & 1 deletion docs/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@
"in": "path",
"required": true,
"schema": {
"type": "string"
"type": "string",
"format": "email"
}
}
],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"build": "tsc",
"lint": "npx eslint . --fix",
"deps:reset": "rm -rf node_modules && rm package-lock.json && npm install",
"deps:fix": "node scripts/fixDependencies.js",
"deps:fix": "ts-node src/util/tasks/DependencyLinter.ts",
"clear:build": "rm -rf build",
"clear:coverage": "rm -rf coverage",
"clear:deps": "rm -rf node_modules && rm package-lock.json",
Expand Down
2 changes: 1 addition & 1 deletion src/types/Log.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export type LogInfo = {
message: string
tag: Tag
timestamp: string
level: 'debug' | 'info' | 'warn' | 'error' | 'verbose'
level: 'debug' | 'info' | 'warn' | 'error'
details?: object
stacktrace?: any
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// eslint-disable-next-line no-undef
const { readFileSync, writeFileSync } = require('node:fs')
import { readFileSync, writeFileSync } from 'node:fs'

const data = readFileSync('./package.json', 'utf8')
const file = JSON.parse(data)
Expand Down

0 comments on commit 2dbe843

Please sign in to comment.