update readme #69
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CD | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
# NOTE: https://github.com/actions/python-versions#building-installation-packages | |
# For Python >= 3.11, the official macOS universal2 Python binaries are simply downloaded from python.org and... | |
python-version: [3.11] | |
poetry-version: [1.5.1] | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run image | |
uses: abatilo/[email protected] | |
with: | |
poetry-version: ${{ matrix.poetry-version }} | |
- name: Config | |
run: poetry config virtualenvs.create false --local | |
- name: Install deps | |
run: poetry install | |
- name: Set version | |
run: echo "APP_VERSION=$(poetry version --short)" >> $GITHUB_ENV | |
- name: Build | |
run: make build | |
- name: Package app | |
run: | | |
mkdir build/volume | |
cp -R 'build/dist/Tiny Wi-Fi Analyzer.app' build/volume | |
hdiutil create \ | |
-fs HFS+ \ | |
-srcfolder "build/volume" \ | |
-volname "Tiny Wi-Fi Analyzer" "build/Tiny_Wi-Fi_Analyzer.dmg" | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
draft: true | |
name: Release v${{ env.APP_VERSION }} | |
files: build/Tiny_Wi-Fi_Analyzer.dmg | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |