Skip to content

Commit d5174f2

Browse files
author
dannysteinbrecher
committed
fix: ensure newline at end of files in .gitignore, .releaserc.json, frontend-build-and-push.yaml, and package.json
1 parent 045aba9 commit d5174f2

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/frontend-build-and-push.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ jobs:
4646
# Set image name for frontend
4747
FRONTEND_IMAGE="ghcr.io/${{ github.repository }}/frontend"
4848
echo "FRONTEND_IMAGE=${FRONTEND_IMAGE}" >> $GITHUB_ENV
49-
49+
5050
# Set initial version for build
5151
echo "VERSION=${{ github.sha }}" >> $GITHUB_ENV
52-
52+
5353
5454
- uses: docker/setup-buildx-action@v3
5555

@@ -82,11 +82,11 @@ jobs:
8282
run: |
8383
cd frontend
8484
npm run semantic-release
85-
85+
8686
NEW_VERSION=$(node -p "require('./package.json').version")
8787
FRONTEND_VERSION="frontend-v$NEW_VERSION"
88-
89-
88+
89+
9090
# Tag the existing image with the frontend-prefixed semantic version
9191
docker pull ${{ env.FRONTEND_IMAGE }}:${{ env.SHORT_SHA }}
9292
docker tag ${{ env.FRONTEND_IMAGE }}:${{ env.SHORT_SHA }} ${{ env.FRONTEND_IMAGE }}:$FRONTEND_VERSION

backend/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ coverage.xml
5959
.pytest_cache/
6060

6161
# Semantic release generated files
62-
CHANGELOG.md
62+
CHANGELOG.md

backend/.releaserc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
}
2323
]
2424
]
25-
}
25+
}

backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
"@semantic-release/github": "^11.0.3",
1212
"semantic-release": "^24.2.7"
1313
}
14-
}
14+
}

0 commit comments

Comments
 (0)