Skip to content

Commit

Permalink
Handle update in new remote dir secret
Browse files Browse the repository at this point in the history
  • Loading branch information
kordejong committed Feb 22, 2024
1 parent eec12a8 commit 1a7945c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@ jobs:
password: ${{ secrets.FTP_PASSWORD }}
port: ${{ secrets.FTP_PORT }}
uploads: |
/usr/share/miniconda/envs/test/conda-bld/linux-64/ => ${{ secrets.FTP_REMOTE_DIR }}/download/linux-64/
/usr/share/miniconda/envs/test/conda-bld/linux-64/ => ${{ secrets.FTP_REMOTE_DIR }}/download/conda/linux-64/
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -244,4 +244,4 @@ jobs:
cmake --build ${{ env.lue_build_directory }} --target cpp_doc py_doc
cmake --build ${{ env.lue_build_directory }} --target sphinx_doc
cd ${{ env.lue_build_directory }}/document/doc
lftp -e "set sftp:auto-confirm yes;set ssl:verify-certificate false;mirror --reverse --delete --transfer-all --parallel=2 $local_dir $remote_dir/doc; quit" -u $ftp_username,$ftp_password sftp://$ftp_server -p $ftp_port
lftp -e "set sftp:auto-confirm yes;set ssl:verify-certificate false;mirror --reverse --delete --transfer-all --parallel=2 $local_dir $remote_dir/doc/doc; quit" -u $ftp_username,$ftp_password sftp://$ftp_server -p $ftp_port
2 changes: 1 addition & 1 deletion .github/workflows/macos-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ jobs:
password: ${{ secrets.FTP_PASSWORD }}
port: ${{ secrets.FTP_PORT }}
uploads: |
/Users/runner/miniconda3/envs/test/conda-bld/osx-64/ => ${{ secrets.FTP_REMOTE_DIR }}/download/osx-64/
/Users/runner/miniconda3/envs/test/conda-bld/osx-64/ => ${{ secrets.FTP_REMOTE_DIR }}/download/conda/osx-64/
4 changes: 2 additions & 2 deletions .github/workflows/windows-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Windows Conda package
on:
push:
branches-ignore:
- "gh614"
- "ghxyz"
paths:
- "conanfile.py"
- ".github/workflows/windows-conda.yml"
Expand Down Expand Up @@ -56,4 +56,4 @@ jobs:
password: ${{ secrets.FTP_PASSWORD }}
port: ${{ secrets.FTP_PORT }}
uploads: |
C:/Miniconda/envs/test/conda-bld/win-64/ => ${{ secrets.FTP_REMOTE_DIR }}/download/win-64/
C:/Miniconda/envs/test/conda-bld/win-64/ => ${{ secrets.FTP_REMOTE_DIR }}/download/conda/win-64/

0 comments on commit 1a7945c

Please sign in to comment.