mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-21 23:20:24 +00:00
improve CI/CD workflows
This commit is contained in:
parent
da0f470f1c
commit
7896d2eef7
4 changed files with 41 additions and 4 deletions
6
.github/workflows/development.yml
vendored
6
.github/workflows/development.yml
vendored
|
@ -73,11 +73,15 @@ jobs:
|
||||||
- name: Prepare build artifact for Linux/macOS
|
- name: Prepare build artifact for Linux/macOS
|
||||||
if: startsWith(matrix.os, 'windows-') != true
|
if: startsWith(matrix.os, 'windows-') != true
|
||||||
run: |
|
run: |
|
||||||
mkdir output
|
mkdir -p output/{bash_completion,zsh_completion}
|
||||||
cp sftpgo output/
|
cp sftpgo output/
|
||||||
cp sftpgo.json output/
|
cp sftpgo.json output/
|
||||||
cp -r templates output/
|
cp -r templates output/
|
||||||
cp -r static output/
|
cp -r static output/
|
||||||
|
./sftpgo gen completion bash > output/bash_completion/sftpgo-completion.bash
|
||||||
|
./sftpgo gen completion zsh > output/zsh_completion/_sftpgo
|
||||||
|
./sftpgo gen man -d output/man/man1
|
||||||
|
gzip output/man/man1/*
|
||||||
|
|
||||||
- name: Prepare build artifact for Windows
|
- name: Prepare build artifact for Windows
|
||||||
if: startsWith(matrix.os, 'windows-')
|
if: startsWith(matrix.os, 'windows-')
|
||||||
|
|
35
.github/workflows/release.yml
vendored
35
.github/workflows/release.yml
vendored
|
@ -148,7 +148,7 @@ jobs:
|
||||||
- name: Prepare Release for Linux/macOS
|
- name: Prepare Release for Linux/macOS
|
||||||
if: startsWith(matrix.os, 'windows-') != true
|
if: startsWith(matrix.os, 'windows-') != true
|
||||||
run: |
|
run: |
|
||||||
mkdir -p output/{init,examples/rest-api-cli,sqlite}
|
mkdir -p output/{init,examples/rest-api-cli,sqlite,bash_completion,zsh_completion}
|
||||||
echo "For documentation please take a look here:" > output/README.txt
|
echo "For documentation please take a look here:" > output/README.txt
|
||||||
echo "" >> output/README.txt
|
echo "" >> output/README.txt
|
||||||
echo "https://github.com/drakkan/sftpgo/blob/${SFTPGO_VERSION}/README.md" >> output/README.txt
|
echo "https://github.com/drakkan/sftpgo/blob/${SFTPGO_VERSION}/README.md" >> output/README.txt
|
||||||
|
@ -164,6 +164,10 @@ jobs:
|
||||||
else
|
else
|
||||||
cp -r init/com.github.drakkan.sftpgo.plist output/init/
|
cp -r init/com.github.drakkan.sftpgo.plist output/init/
|
||||||
fi
|
fi
|
||||||
|
./sftpgo gen completion bash > output/bash_completion/sftpgo-completion.bash
|
||||||
|
./sftpgo gen completion zsh > output/zsh_completion/_sftpgo
|
||||||
|
./sftpgo gen man -d output/man/man1
|
||||||
|
gzip output/man/man1/*
|
||||||
cp examples/rest-api-cli/sftpgo_api_cli.py output/examples/rest-api-cli/
|
cp examples/rest-api-cli/sftpgo_api_cli.py output/examples/rest-api-cli/
|
||||||
cd output
|
cd output
|
||||||
tar cJvf sftpgo_${SFTPGO_VERSION}_${OS}_x86_64.tar.xz *
|
tar cJvf sftpgo_${SFTPGO_VERSION}_${OS}_x86_64.tar.xz *
|
||||||
|
@ -190,6 +194,24 @@ jobs:
|
||||||
SFTPGO_ISS_VERSION: ${{ steps.get_version.outputs.VERSION }}
|
SFTPGO_ISS_VERSION: ${{ steps.get_version.outputs.VERSION }}
|
||||||
SFTPGO_ISS_DOC_URL: https://github.com/drakkan/sftpgo/blob/${{ steps.get_version.outputs.VERSION }}/README.md
|
SFTPGO_ISS_DOC_URL: https://github.com/drakkan/sftpgo/blob/${{ steps.get_version.outputs.VERSION }}/README.md
|
||||||
|
|
||||||
|
- name: Prepare Portable Release for Windows
|
||||||
|
if: startsWith(matrix.os, 'windows-')
|
||||||
|
run: |
|
||||||
|
mkdir win-portable\examples\rest-api-cli
|
||||||
|
copy .\sftpgo.exe .\win-portable
|
||||||
|
copy .\sftpgo.json .\win-portable
|
||||||
|
copy .\sftpgo.db .\win-portable
|
||||||
|
copy .\dist\sftpgo_api_cli.exe .\win-portable\examples\rest-api-cli
|
||||||
|
copy .\LICENSE .\win-portable\LICENSE.txt
|
||||||
|
mkdir win-portable\templates
|
||||||
|
xcopy .\templates .\win-portable\templates\ /E
|
||||||
|
mkdir win-portable\static
|
||||||
|
xcopy .\static .\win-portable\static\ /E
|
||||||
|
Compress-Archive .\win-portable\* sftpgo_portable_x86_64.zip
|
||||||
|
env:
|
||||||
|
SFTPGO_VERSION: ${{ steps.get_version.outputs.VERSION }}
|
||||||
|
OS: ${{ steps.get_os_name.outputs.OS }}
|
||||||
|
|
||||||
- name: Download release upload URL
|
- name: Download release upload URL
|
||||||
uses: actions/download-artifact@v2
|
uses: actions/download-artifact@v2
|
||||||
with:
|
with:
|
||||||
|
@ -223,3 +245,14 @@ jobs:
|
||||||
asset_path: ./sftpgo_windows_x86_64.exe
|
asset_path: ./sftpgo_windows_x86_64.exe
|
||||||
asset_name: sftpgo_${{ steps.get_version.outputs.VERSION }}_${{ steps.get_os_name.outputs.OS }}_x86_64.exe
|
asset_name: sftpgo_${{ steps.get_version.outputs.VERSION }}_${{ steps.get_os_name.outputs.OS }}_x86_64.exe
|
||||||
asset_content_type: application/x-dosexec
|
asset_content_type: application/x-dosexec
|
||||||
|
|
||||||
|
- name: Upload Portable Windows Release
|
||||||
|
if: startsWith(matrix.os, 'windows-')
|
||||||
|
uses: actions/upload-release-asset@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ steps.upload_url.outputs.url }}
|
||||||
|
asset_path: ./sftpgo_portable_x86_64.zip
|
||||||
|
asset_name: sftpgo_${{ steps.get_version.outputs.VERSION }}_${{ steps.get_os_name.outputs.OS }}_portable_x86_64.zip
|
||||||
|
asset_content_type: application/zip
|
||||||
|
|
|
@ -49,7 +49,7 @@
|
||||||
<div class="form-group row">
|
<div class="form-group row">
|
||||||
<label for="idPassword" class="col-sm-2 col-form-label">Password</label>
|
<label for="idPassword" class="col-sm-2 col-form-label">Password</label>
|
||||||
<div class="col-sm-10">
|
<div class="col-sm-10">
|
||||||
<input type="password" class="form-control" id="idPassword" name="password" placeholder="" maxlength="255"
|
<input type="password" class="form-control" id="idPassword" name="password" placeholder=""
|
||||||
autocomplete="new-password" {{if not .IsAdd}}aria-describedby="pwdHelpBlock" {{end}}>
|
autocomplete="new-password" {{if not .IsAdd}}aria-describedby="pwdHelpBlock" {{end}}>
|
||||||
{{if not .IsAdd}}
|
{{if not .IsAdd}}
|
||||||
<small id="pwdHelpBlock" class="form-text text-muted">
|
<small id="pwdHelpBlock" class="form-text text-muted">
|
||||||
|
|
|
@ -44,7 +44,7 @@ Source: "{#MyAppDir}\sftpgo.exe"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
Source: "{#MyAppDir}\sftpgo.db"; DestDir: "{commonappdata}\{#MyAppName}"; Flags: onlyifdoesntexist uninsneveruninstall
|
Source: "{#MyAppDir}\sftpgo.db"; DestDir: "{commonappdata}\{#MyAppName}"; Flags: onlyifdoesntexist uninsneveruninstall
|
||||||
Source: "{#MyAppDir}\LICENSE.txt"; DestDir: "{app}"; Flags: ignoreversion
|
Source: "{#MyAppDir}\LICENSE.txt"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
Source: "{#MyAppDir}\sftpgo.json"; DestDir: "{commonappdata}\{#MyAppName}"; Flags: onlyifdoesntexist uninsneveruninstall
|
Source: "{#MyAppDir}\sftpgo.json"; DestDir: "{commonappdata}\{#MyAppName}"; Flags: onlyifdoesntexist uninsneveruninstall
|
||||||
Source: "{#MyAppDir}\sftpgo_api_cli.exe"; DestDir: "{app}\examples\rest-api-cli"; Flags: ignoreversion recursesubdirs createallsubdirs
|
Source: "{#MyAppDir}\sftpgo_api_cli.exe"; DestDir: "{app}\examples\rest-api-cli"; Flags: ignoreversion
|
||||||
Source: "{#MyAppDir}\templates\*"; DestDir: "{commonappdata}\{#MyAppName}\templates"; Flags: ignoreversion recursesubdirs createallsubdirs
|
Source: "{#MyAppDir}\templates\*"; DestDir: "{commonappdata}\{#MyAppName}\templates"; Flags: ignoreversion recursesubdirs createallsubdirs
|
||||||
Source: "{#MyAppDir}\static\*"; DestDir: "{commonappdata}\{#MyAppName}\static"; Flags: ignoreversion recursesubdirs createallsubdirs
|
Source: "{#MyAppDir}\static\*"; DestDir: "{commonappdata}\{#MyAppName}\static"; Flags: ignoreversion recursesubdirs createallsubdirs
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue