We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 653056d commit f975100Copy full SHA for f975100
.github/workflows/generate-podcast.yml
@@ -0,0 +1,32 @@
1
+name: generate-podcast
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+permissions:
7
+ contents: read
8
9
+env:
10
+ NODE_VERSION: 23.6.0
11
+ PNPM_VERSION: 9.15.4
12
13
+jobs:
14
+ podcast:
15
+ runs-on: ubuntu-24.04
16
+ steps:
17
+ - uses: actions/checkout@v4
18
19
+ - name: Node setup
20
+ uses: ./.github/actions/setup
21
+ with:
22
+ node-version: ${{ env.NODE_VERSION }}
23
+ pnpm-version: ${{ env.PNPM_VERSION }}
24
+ pnpm-install-cache-key: pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
25
26
+ - run: pnpm start
27
28
+ - uses: actions/upload-artifact@v4
29
30
+ name: output
31
+ path: output
32
+ retention-days: 1
0 commit comments