remove deployments (notify with comments again) #79
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
# workflow to convert `./toki/` articles to plaintext for easier Scribus import | |
name: toki-plaintext | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
export-plaintext: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Convert to plaintext | |
run: | | |
chmod +x ./scripts/scribus_export_ALL.sh | |
chmod +x ./scripts/scribus_export.sh | |
./scripts/scribus_export_ALL.sh | |
- name: Upload plaintext | |
uses: actions/upload-artifact@v2 | |
with: | |
name: plaintext | |
path: ./scribus/ |