Skip to content

Commit

Permalink
Added username and password usage
Browse files Browse the repository at this point in the history
  • Loading branch information
vchelaru committed Mar 28, 2024
1 parent 18e2fff commit 27ecaf5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/Engine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,10 @@ jobs:
run: .\FlatRedBall\FRBDK\BuildServerUploader\BuildServerUploaderConsole\bin\x86\Debug\BuildServerUploaderConsole.exe copytotemplates

- name: Zip and upload templates
run: .\FlatRedBall\FRBDK\BuildServerUploader\BuildServerUploaderConsole\bin\x86\Debug\BuildServerUploaderConsole.exe zipanduploadtemplates username password
env: # Or as an environment variable
username: ${{ secrets.FTPUSERNAME }}
password: ${{ secrets.FTPPASSWORD }}
run: .\FlatRedBall\FRBDK\BuildServerUploader\BuildServerUploaderConsole\bin\x86\Debug\BuildServerUploaderConsole.exe zipanduploadtemplates ${{ env.username }} ${{ env.password }}

# $FolderPath2 = 'FlatRedBall\Engines\Forms\FlatRedBall.Forms'
# if (Test-Path -Path $FolderPath2) {
Expand Down

0 comments on commit 27ecaf5

Please sign in to comment.