2024-04-20 01:51:59 +00:00
|
|
|
name: Gitea actions
|
|
|
|
run-name: ${{ gitub.actor }}
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
Build:
|
2024-04-20 02:52:43 +00:00
|
|
|
runs-on: ubuntu-latest
|
2024-04-20 01:51:59 +00:00
|
|
|
steps:
|
2024-04-20 02:58:56 +00:00
|
|
|
- uses: actions/cache@v4
|
2024-04-20 02:57:59 +00:00
|
|
|
- run: apt install -y python3 python3-pip
|
|
|
|
- run: pip install screenplain
|
|
|
|
- run: pip install 'screenplain[PDF]'
|
2024-04-20 02:58:56 +00:00
|
|
|
- run: actions/checkout@v4
|
2024-04-20 02:36:27 +00:00
|
|
|
- run: mkdir ScreenPlay
|
|
|
|
- run: screenplain holyloop.fountain ScreenPlay/holyloop.pdf
|
2024-04-20 02:52:43 +00:00
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
path: ScreenPlay
|