diff --git a/.github/workflows/pythonpublish.yml b/.github/workflows/pythonpublish.yml index 870006f..100341f 100644 --- a/.github/workflows/pythonpublish.yml +++ b/.github/workflows/pythonpublish.yml @@ -27,3 +27,13 @@ jobs: run: | python setup.py sdist bdist_wheel twine upload dist/* + - name: Report to Mastodon + uses: cbrgm/mastodon-github-action@v1.0.1 + with: + message: | + I just released a new version of ptulsconv, my ADR cue sheet generator! + + ${{ github.server_url }}/${{ github.repository }} + env: + MASTODON_URL: ${{ secrets.MASTODON_URL }} + MASTODON_ACCESS_TOKEN: ${{ secrets.MASTODON_ACCESS_TOKEN }} diff --git a/.github/workflows/toot.yml b/.github/workflows/toot.yml new file mode 100644 index 0000000..6f6d1bb --- /dev/null +++ b/.github/workflows/toot.yml @@ -0,0 +1,22 @@ +name: Test Toot + +on: + workflow_dispatch: + + +jobs: + print-tag: + runs-on: ubuntu-latest + steps: + - name: Report to Mastodon + uses: cbrgm/mastodon-github-action@v1.0.1 + env: + MASTODON_URL: ${{ secrets.MASTODON_URL }} + MASTODON_ACCESS_TOKEN: ${{ secrets.MASTODON_ACCESS_TOKEN }} + with: + message: | + This is a test toot, automatically posted by a github action. + + ${{ github.server_url }}/${{ github.repository }} + + ${{ github.ref }} diff --git a/README.md b/README.md index b4c1e5f..03b3203 100644 --- a/README.md +++ b/README.md @@ -27,20 +27,4 @@ This will install the necessary libraries on your host and gives you command-line access to the tool through an entry-point `ptulsconv`. In a terminal window type `ptulsconv -h` for a list of available options. - -## Theory of Operation - -[Avid Pro Tools][avp] can be used to make spotting notes for ADR recording -sessions by creating spotting regions with descriptive text and exporting the -session as text. This file can then be dropped into Excel or any CSV-reading -app like Filemaker Pro. - -**ptulsconv** accepts a text export from Pro Tools and automatically creates -PDF and CSV documents for use in ADR spotting, recording, editing and -reporting, and supplemental JSON documents can be output for use with other -workflows. - -[avp]: http://www.avid.com/pro-tools -[quickstart]: https://ptulsconv.readthedocs.io/en/latest/quickstart.html - - +[quickstart]: https://ptulsconv.readthedocs.io/en/latest/user/quickstart.html