forked from n8n-io/n8n
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat/fix: Update docker/login-action command in Gi
- Loading branch information
1 parent
4fd2509
commit 86bb968
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// main.ts | ||
|
||
import * as fs from 'fs'; | ||
|
||
function updateDockerLoginAction(username: string, password: string): void { | ||
const workflowFilePath = '.github/workflows/main.yml'; | ||
const workflowFileContent = fs.readFileSync(workflowFilePath, 'utf8'); | ||
|
||
// Update the "docker/login-action@v2" command with the provided username and password | ||
const updatedWorkflowFileContent = workflowFileContent.replace( | ||
'docker/login-action@v2', | ||
`docker/login-action@v2\n with:\n username: ${{ secrets.DOCKER_USERNAME }}\n password: ${{ secrets.DOCKER_PASSWORD }}` | ||
); | ||
|
||
fs.writeFileSync(workflowFilePath, updatedWorkflowFileContent); | ||
} | ||
|
||
function storeSecret(name: string, value: string): void { | ||
// Store the secret securely | ||
// Implementation details depend on the platform being used | ||
// For example, in GitHub Actions, you can use the `actions/secrets` package | ||
// to store the secret as a repository secret | ||
} | ||
|
||
// Usage example | ||
const username = 'your_username'; | ||
const password = 'your_password'; | ||
|
||
storeSecret('DOCKER_USERNAME', username); | ||
storeSecret('DOCKER_PASSWORD', password); | ||
updateDockerLoginAction(username, password); |