Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
84e1922979 | ||
|
|
7f89168b92 | ||
|
|
b9f17c4a95 |
6
.github/workflows/ci_docker.yml
vendored
6
.github/workflows/ci_docker.yml
vendored
@@ -24,7 +24,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-and-push-docker-debian-image:
|
build-and-push-docker-debian-image:
|
||||||
name: Build Docker image and push to repositories
|
name: Build Docker Bullseye image and push to repositories
|
||||||
# run only when code is compiling and tests are passing
|
# run only when code is compiling and tests are passing
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
@@ -63,7 +63,7 @@ jobs:
|
|||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
password: ${{ secrets.GHCR_IO_TOKEN }}
|
password: ${{ secrets.GHCR_IO_TOKEN }}
|
||||||
|
|
||||||
- name: "qr_reader: Build image and push to Docker Hub and GitHub Container Registry"
|
- name: "Build image and push to Docker Hub and GitHub Container Registry"
|
||||||
id: docker_build_qr_reader_latest
|
id: docker_build_qr_reader_latest
|
||||||
uses: docker/build-push-action@v3
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
@@ -89,7 +89,7 @@ jobs:
|
|||||||
echo "extract_otp_secrets: ${{ steps.docker_build_qr_reader_latest.outputs.digest }}"
|
echo "extract_otp_secrets: ${{ steps.docker_build_qr_reader_latest.outputs.digest }}"
|
||||||
|
|
||||||
build-and-push-docker-alpine-image:
|
build-and-push-docker-alpine-image:
|
||||||
name: Build Docker image and push to repositories
|
name: Build Docker Alpine image and push to repositories
|
||||||
# run only when code is compiling and tests are passing
|
# run only when code is compiling and tests are passing
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
|||||||
36
.github/workflows/ci_release.yml
vendored
36
.github/workflows/ci_release.yml
vendored
@@ -184,14 +184,17 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#choosing-github-hosted-runners
|
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#choosing-github-hosted-runners
|
||||||
include:
|
include:
|
||||||
- os: ubuntu-latest
|
- os: windows-latest
|
||||||
TARGET: linux
|
TARGET: windows
|
||||||
|
# TODO add --icon
|
||||||
|
# TODO add --manifest
|
||||||
|
# TODO find more elegant solution for pyzbar\libiconv.dll and pyzbar\libzbar-64.dll
|
||||||
CMD_BUILD: |
|
CMD_BUILD: |
|
||||||
pyinstaller -y --add-data $pythonLocation/__yolo_v3_qr_detector/:__yolo_v3_qr_detector/ --onefile src/extract_otp_secrets.py
|
pyinstaller -y --add-data "$($Env:pythonLocation)\__yolo_v3_qr_detector;__yolo_v3_qr_detector" --add-binary "$($Env:pythonLocation)\Lib\site-packages\pyzbar\libiconv.dll;pyzbar" --add-binary "$($Env:pythonLocation)\Lib\site-packages\pyzbar\libzbar-64.dll;pyzbar" --onefile --version-file build\file_version_info.txt src\extract_otp_secrets.py
|
||||||
OUT_FILE_NAME: extract_otp_secrets
|
OUT_FILE_NAME: extract_otp_secrets.exe
|
||||||
ASSET_NAME: extract_otp_secrets_linux_x86_64_ubuntu_latest
|
ASSET_NAME: extract_otp_secrets_win_x86_64.exe
|
||||||
ASSET_MIME: application/x-executable
|
ASSET_MIME: application/vnd.microsoft.portable-executable
|
||||||
UPLOAD: false
|
UPLOAD: true
|
||||||
- os: macos-11
|
- os: macos-11
|
||||||
TARGET: macos
|
TARGET: macos
|
||||||
# TODO add --icon
|
# TODO add --icon
|
||||||
@@ -206,17 +209,14 @@ jobs:
|
|||||||
ASSET_NAME: extract_otp_secrets_macos_x86_64
|
ASSET_NAME: extract_otp_secrets_macos_x86_64
|
||||||
ASSET_MIME: application/x-newton-compatible-pkg
|
ASSET_MIME: application/x-newton-compatible-pkg
|
||||||
UPLOAD: true
|
UPLOAD: true
|
||||||
- os: windows-latest
|
- os: ubuntu-latest
|
||||||
TARGET: windows
|
TARGET: linux
|
||||||
# TODO add --icon
|
|
||||||
# TODO add --manifest
|
|
||||||
# TODO find more elegant solution for pyzbar\libiconv.dll and pyzbar\libzbar-64.dll
|
|
||||||
CMD_BUILD: |
|
CMD_BUILD: |
|
||||||
pyinstaller -y --add-data "$($Env:pythonLocation)\__yolo_v3_qr_detector;__yolo_v3_qr_detector" --add-binary "$($Env:pythonLocation)\Lib\site-packages\pyzbar\libiconv.dll;pyzbar" --add-binary "$($Env:pythonLocation)\Lib\site-packages\pyzbar\libzbar-64.dll;pyzbar" --onefile --version-file build\file_version_info.txt src\extract_otp_secrets.py
|
pyinstaller -y --add-data $pythonLocation/__yolo_v3_qr_detector/:__yolo_v3_qr_detector/ --onefile src/extract_otp_secrets.py
|
||||||
OUT_FILE_NAME: extract_otp_secrets.exe
|
OUT_FILE_NAME: extract_otp_secrets
|
||||||
ASSET_NAME: extract_otp_secrets_win_x86_64.exe
|
ASSET_NAME: extract_otp_secrets_linux_x86_64_ubuntu_latest
|
||||||
ASSET_MIME: application/vnd.microsoft.portable-executable
|
ASSET_MIME: application/x-executable
|
||||||
UPLOAD: true
|
UPLOAD: false
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Set macos macos_python_path
|
- name: Set macos macos_python_path
|
||||||
@@ -245,7 +245,7 @@ jobs:
|
|||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
mkdir -p build/
|
mkdir -p build/
|
||||||
VERSION_STR=$(setuptools-git-versioning) VERSION_MAJOR=$(cut -d '.' -f 1 <<< "$(setuptools-git-versioning)") VERSION_MINOR=$(cut -d '.' -f 2 <<< "$(setuptools-git-versioning)") VERSION_PATCH=$(cut -d '.' -f 3 <<< "$(setuptools-git-versioning)") VERSION_BUILD=$(($(git rev-list --count $(git tag | sort -V -r | sed '1!d')..HEAD))) YEARS='2020-2023' envsubst < file_version_info_template.txt > build/file_version_info.txt
|
VERSION_STR=$(setuptools-git-versioning) VERSION_MAJOR=$(cut -d '.' -f 1 <<< "$(setuptools-git-versioning)") VERSION_MINOR=$(cut -d '.' -f 2 <<< "$(setuptools-git-versioning)") VERSION_PATCH=$(echo $(cut -d '.' -f 3 <<< "$(setuptools-git-versioning)") | sed -E "s/^([0-9]+).*/\1/") VERSION_BUILD=$(($(git rev-list --count $(git tag | sort -V -r | sed '1!d')..HEAD))) YEARS='2020-2023' envsubst < file_version_info_template.txt > build/file_version_info.txt
|
||||||
- name: Build with pyinstaller for ${{ matrix.TARGET }}
|
- name: Build with pyinstaller for ${{ matrix.TARGET }}
|
||||||
run: ${{ matrix.CMD_BUILD }}
|
run: ${{ matrix.CMD_BUILD }}
|
||||||
- name: Smoke tests for generated exe (general)
|
- name: Smoke tests for generated exe (general)
|
||||||
|
|||||||
@@ -144,8 +144,8 @@ python src/extract_otp_secrets.py example_export.txt
|
|||||||
1. Download executable for your platform from [latest release](https://github.com/scito/extract_otp_secrets/releases/latest), see assets
|
1. Download executable for your platform from [latest release](https://github.com/scito/extract_otp_secrets/releases/latest), see assets
|
||||||
2. Start executable by clicking or from command line
|
2. Start executable by clicking or from command line
|
||||||
|
|
||||||
✅ Everything is just packed in one executable.
|
✅ Everything is just packed in one executable.
|
||||||
✅ No installation needed, neither Python nor dependencies have to be installed.
|
✅ No installation needed, neither Python nor dependencies have to be installed.
|
||||||
✅ Easy and convenient
|
✅ Easy and convenient
|
||||||
|
|
||||||
### Run as script (recommend for developers or advanced users)
|
### Run as script (recommend for developers or advanced users)
|
||||||
|
|||||||
Reference in New Issue
Block a user