add default on next iter in item checker pause #42
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: 🚀 Deploy package to PyPI | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- musify/** | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: false | |
jobs: | |
validate: | |
name: ✅ Validate | |
uses: ./.github/workflows/validate.yml | |
deploy: | |
name: 🚀 Publish to PyPI | |
runs-on: ubuntu-latest | |
needs: validate | |
if: github.ref == 'refs/heads/master' | |
environment: | |
name: pypi | |
url: https://pypi.org/p/musify | |
permissions: | |
id-token: write | |
steps: | |
- name: 📦 Download package artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: ${{ needs.validate.outputs.artifact-name }} | |
path: dist/ | |
- name: 🚀 Publish to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 |