Skip to content

Commit 391049c

Browse files
committed
fix: add login to github container registry to build script
1 parent 7b66463 commit 391049c

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

.github/workflows/container_builds.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,6 @@ jobs:
9191
id: login-ecr
9292
uses: aws-actions/amazon-ecr-login@v2
9393

94-
- name: Log in to GitHub Container Registry (GHCR)
95-
uses: docker/login-action@v3
96-
with:
97-
registry: ghcr.io
98-
username: ${{ github.actor }}
99-
password: ${{ secrets.GITHUB_TOKEN }}
100-
10194
- name: Set up Docker Buildx
10295
uses: docker/setup-buildx-action@v2
10396

backend/src/jasper/jasper_service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ func (js *jasperService) generateUsageReportPDF(userID int) ([]byte, error) {
104104
"output_file_path": outputFilePath,
105105
"json_data_length": len(jsonData),
106106
"json_file_path": jsonFilePath,
107-
}).Info("Creating temporary JSON file for JasperReports")
107+
}).Info("Creating temporary JSON file for Jasper Reports")
108108

109109
if err := os.WriteFile(jsonFilePath, jsonData, 0600); err != nil {
110110
return nil, fmt.Errorf("failed to write temporary data file: %w", err)

0 commit comments

Comments
 (0)