Skip to content

review and update all documentation (#3) #38

review and update all documentation (#3)

review and update all documentation (#3) #38

Workflow file for this run

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: 🛒 Checkout
uses: actions/checkout@v4
- name: 📦 Download package artifacts
uses: actions/download-artifact@v3
with:
name: ${{ needs.validate.outputs.artifact-name }}
path: dist/
- name: 🚀 Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1