v1.9.3 #57
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: Update Sparkle appcast | |
on: | |
release: | |
workflow_dispatch: | |
jobs: | |
generate_appcast: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout website | |
uses: actions/checkout@v4 | |
with: | |
ref: website | |
- uses: actions/setup-python@v5.1.0 | |
with: | |
python-version: '3.x' | |
- name: Install requirements | |
run: | | |
brew install pandoc | |
python3 -m pip install requests | |
- name: Generate appcast | |
run: | | |
python3 _scripts/generate_appcast.py | |
env: | |
SPARKLE_PRIVATE_KEY: ${{ secrets.SPARKLE_PRIVATE }} | |
- name: Push back appcast updates | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Auto-commit appcast updates |