Skip to content

Commit

Permalink
💻 ci: try to show GPG_PRIVATE_KEY (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
drackp2m authored Jan 11, 2025
2 parents 1c8ea3c + a52035b commit 8c900e5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
env:
GPG_PRIVATE_KEY: ${{ secrets.SEMANTIC_RELEASE_GPG_PRIVATE_KEY }}
run: |
echo "$GPG_PRIVATE_KEY"
echo "$GPG_PRIVATE_KEY" > private.key
gpg --batch --import private.key
git config --global commit.gpgSign true
Expand Down
17 changes: 5 additions & 12 deletions apps/app/src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@

@use './scss/main';

// app-you-won,
// #confetti {
// display: none;
// }

html {
cursor: default;

Expand Down Expand Up @@ -63,17 +58,15 @@ h6 {
font-size: var(--font-size-sm);
}

#confetti {
position: relative;
z-index: 100;
}

button,
.btn,
a {
cursor: default;

&:hover {
opacity: 0.8;
}
}

#confetti {
position: relative;
z-index: 100;
}
9 changes: 8 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,15 @@ export default [
yoda: ['warn', 'always'],
'no-implicit-coercion': ['warn', { boolean: true }],
'no-extra-boolean-cast': 'warn',
'@typescript-eslint/strict-boolean-expressions': 'warn',
'@typescript-eslint/no-unnecessary-boolean-literal-compare': 'warn',
'@typescript-eslint/strict-boolean-expressions': [
'warn',
{
allowNullableObject: false,
allowNumber: false,
allowString: false,
},
],
},
},
{
Expand Down

0 comments on commit 8c900e5

Please sign in to comment.