DrawBot App Builder #72
Workflow file for this run
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: DrawBot App Builder | |
on: | |
push: | |
tags: | |
- "*" | |
workflow_dispatch: # allow manual trigger | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Install Certificates | |
run: | | |
echo ${{ secrets.CERTIFICATE_P12 }} | base64 --decode > certificate.p12 | |
security import certificate.p12 -P ${{ secrets.CERTIFICATE_PASSWORD }} | |
security create-keychain -p drawbotKeychain drawbot.keychain | |
security default-keychain -s drawbot.keychain | |
security set-keychain-settings -l -u -t 8000 | |
security unlock-keychain -p drawbotKeychain drawbot.keychain | |
security import certificate.p12 -k drawbot.keychain -P ${{ secrets.CERTIFICATE_PASSWORD }} -T /usr/bin/codesign | |
security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k drawbotKeychain drawbot.keychain | |
rm -fr *.p12 | |
security find-identity -v -p codesigning | |
- name: Set up Python 3.12 | |
run: | | |
curl https://www.python.org/ftp/python/3.12.1/python-3.12.1-macos11.pkg --output pythonInstaller.pkg | |
sudo installer -pkg pythonInstaller.pkg -target / | |
- name: Check python | |
run: | | |
python3 --version | |
python3 -c "import platform; print('macOS version:', platform.mac_ver()[0])" | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Setup Virtual Environment | |
run: | | |
python3 -m venv venv | |
source venv/bin/activate | |
python -c "import sys; print('\n'.join(sys.path))" | |
- name: Install dependencies | |
run: | | |
source venv/bin/activate | |
pip install --upgrade pip | |
pip install -r ./requirements.txt | |
pip install . | |
./app/install_custom_universal_wheels.sh | |
- name: Run tests | |
run: | |
source venv/bin/activate | |
python ./tests/runAllTests.py | |
- name: Build app | |
run: | | |
source venv/bin/activate | |
python setupApp.py py2app --dmg --codesign "${{ secrets.CODESIGN_NAME }}" --notarizedeveloper "${{ secrets.NOTARIZE_DEVELOPER }}" --notarizeTeamID "${{ secrets.NOTARIZE_TEAMID }}" --notarizePassword "${{ secrets.NOTARIZE_PASSWORD }}" | |
- name: Upload Notarization Log | |
uses: actions/upload-artifact@v1 | |
if: always() | |
with: | |
name: notarize_log.txt | |
path: ./dist/notarize_log.txt | |
- name: Read CHANGELOG.md | |
if: startsWith(github.event.ref, 'refs/tags') | |
id: changelog | |
env: | |
GITHUB_REF: ${{ github.ref }} | |
run: | | |
source venv/bin/activate | |
# echo "::set-output name=body::$(python app/extract_changes.py)" | |
echo "body=$(python app/extract_changes.py)" >> $GITHUB_OUTPUT | |
- name: Storing App Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: DrawBot.dmg | |
path: ./dist/DrawBot.dmg | |
- name: Create Release | |
if: startsWith(github.event.ref, 'refs/tags') | |
id: create_release | |
uses: actions/create-release@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: DrawBot version ${{ github.ref }} | |
draft: true | |
prerelease: false | |
body: ${{ steps.changelog.outputs.body }} | |
- name: Upload Release Asset | |
if: startsWith(github.event.ref, 'refs/tags') | |
id: upload-release-asset | |
uses: actions/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps | |
asset_path: ./dist/DrawBot.dmg | |
asset_name: DrawBot.dmg | |
asset_content_type: application/octet-stream | |