Skip to content

Commit

Permalink
fix varname
Browse files Browse the repository at this point in the history
  • Loading branch information
nikiluk committed Oct 5, 2024
1 parent 2ee66e6 commit c86be56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/upload-schema-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
- name: Upload schema files via FTP
env:
FTP_SERVER: ${{ secrets.FTP_SERVER }}
FTP_USERNAME: ${{ secrets.FTP_USERNAME }}
FTP_USERNAME: ${{ secrets.FTP_USER }}
FTP_PASSWORD: ${{ secrets.FTP_PASSWORD }}
run: |
for file in schema/*; do
curl -u $FTP_USERNAME:$FTP_PASSWORD ftp://$FTP_SERVER/schema/ --upload-file $file
curl -u $FTP_USER:$FTP_PASSWORD ftp://$FTP_SERVER/schema/ --upload-file $file
done

0 comments on commit c86be56

Please sign in to comment.