build(deps): bump the github-actions group across 1 directory with 3 updates #5660
Workflow file for this run
This file contains hidden or 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: macOS | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Read variables from repo | |
| run: | | |
| export $(cat .github/workflows/env) | |
| cat .github/workflows/env >> $GITHUB_ENV | |
| echo CACHE_KEY=${{ runner.os }}-py$PYVER-${{ hashFiles('build-helper.sh', 'helper/**')}} >> $GITHUB_ENV | |
| - name: Check app versions | |
| run: | | |
| python3 set-version.py | |
| git diff --exit-code | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ env.PYVER }} | |
| - name: Set up CocoaPods | |
| uses: maxim-lobanov/setup-cocoapods@v1 | |
| with: | |
| podfile-path: macos/Podfile.lock | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - name: Cache helper | |
| id: cache-helper | |
| uses: actions/cache@v5 | |
| with: | |
| path: | | |
| build/macos/helper | |
| assets/licenses/helper.json | |
| key: ${{ env.CACHE_KEY }} | |
| - name: Install dependencies | |
| if: steps.cache-helper.outputs.cache-hit != 'true' | |
| run: | | |
| brew update | |
| brew install swig | |
| python -m pip install --upgrade pip | |
| - name: Build the Helper | |
| if: steps.cache-helper.outputs.cache-hit != 'true' | |
| run: ./build-helper.sh | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: 'stable' | |
| flutter-version: ${{ env.FLUTTER }} | |
| - run: flutter config --enable-macos-desktop | |
| - run: flutter --version | |
| - run: flutter pub get | |
| - name: Run lints/tests | |
| env: | |
| SKIP: ${{ steps.cache-helper.outputs.cache-hit == 'true' && 'mypy,ruff check,ruff format' || ''}} | |
| run: | | |
| uv tool install pre-commit | |
| pre-commit run --all-files | |
| flutter test | |
| - name: Build the app | |
| run: | | |
| export VERSION_NAME=`./set-version.py | head -n 1 | sed 's/-.*$//g'` | |
| flutter build macos --build-name=$VERSION_NAME | |
| - name: Check generated files | |
| run: git diff --exit-code | |
| - name: Create dmg | |
| run: | | |
| brew install create-dmg | |
| mkdir source_folder | |
| cp -R build/macos/Build/Products/Release/"Yubico Authenticator.app" source_folder | |
| cp resources/icons/dmg-background.png . | |
| sh create-dmg.sh | |
| - name: Rename and archive app bundle | |
| run: | | |
| export REF=$(echo ${GITHUB_REF} | cut -d '/' -f 3) | |
| mkdir deploy | |
| mv yubioath-desktop.dmg deploy | |
| tar -czf deploy/yubioath-desktop-${REF}.app.tar.gz -C build/macos/Build/Products/Release "Yubico Authenticator.app" | |
| mv create-dmg.sh deploy | |
| mv resources/icons/dmg-background.png deploy | |
| mv macos/helper.entitlements deploy | |
| mv macos/helper-sandbox.entitlements deploy | |
| mv macos/Runner/Release.entitlements deploy | |
| mv macos/release-macos.sh deploy | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: yubioath-desktop-macos | |
| path: deploy |