Skip to content

Fikset Publish workflow som feiler ved push til master #3802

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Mar 21, 2025
15 changes: 12 additions & 3 deletions .github/workflows/common.workflow.libs.frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,17 @@ jobs:
if: |
(github.ref == 'refs/heads/master' || contains(github.event.head_commit.message, '#publish-libs')) &&
(!contains(github.event.head_commit.message, '[skip ci]'))
run: npm version patch && npm publish
run: |
echo Release started by $GITHUB_ACTOR
git remote set-url origin https://$GITHUB_ACTOR:[email protected]/$GITHUB_REPOSITORY.git
git config --global user.email "[email protected]"
git config --global user.name "$GITHUB_ACTOR"

npm version patch
npm publish
git add .
git commit -m "chore: release new version"
git push origin
working-directory: ${{ inputs.working-directory }}
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1,095 changes: 321 additions & 774 deletions apps/dollystatus/src/main/js/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/dollystatus/src/main/js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "status-frontend",
"version": "1.1.14",
"version": "1.1.15",
"type": "module",
"private": true,
"dependencies": {
Expand Down
1,291 changes: 486 additions & 805 deletions apps/endringsmelding-frontend/src/main/js/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/endringsmelding-frontend/src/main/js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "endringsmelding-frontend",
"version": "1.2.30",
"version": "1.2.31",
"private": true,
"type": "module",
"homepage": "/",
Expand Down
1,124 changes: 323 additions & 801 deletions apps/faste-data-frontend/src/main/js/package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions apps/faste-data-frontend/src/main/js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "testnav-faste-data-frontend",
"version": "1.2.16",
"version": "1.2.17",
"private": true,
"type": "module",
"dependencies": {
Expand All @@ -24,7 +24,7 @@
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/react-router-dom": "^5.3.3",
"@types/react-select": "^5.0.1",
"@types/react-select": "^5.0.0",
"@types/react-syntax-highlighter": "^15.5.4",
"less": "^4.1.3",
"prettier": "^3.0.1",
Expand Down
Loading