-
Notifications
You must be signed in to change notification settings - Fork 39
49 lines (46 loc) · 1.43 KB
/
test-build-resources-with-pandoc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: build-resources-with-pandoc
on:
pull_request:
branches: [master]
push:
branches:
- "*" # matches every branch that doesn't contain a '/'
- "*/*" # matches every branch containing a single '/'
- "**" # matches every branch
- "!master" # excludes master
tags: ["!**"]
jobs:
build-resources-with-pandoc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: docker://pandoc/latex:2.19
with:
entrypoint: "/bin/sh"
args: "./build-resources-with-pandoc.sh"
- name: Archive resources
uses: actions/upload-artifact@v4
id: artifact-upload-step
with:
name: pandoc_resources
path: ./public/resources/
retention-days: 1
- name: Archive Error resources
if: failure()
uses: actions/upload-artifact@v4
with:
name: error_resources
path: ./documents/
retention-days: 1
- uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const { postCustomForArchiveResources } = await import('${{ github.workspace }}/scripts/pr-comment.mjs')
await postCustomForArchiveResources({
github,
context,
core,
url: '${{steps.artifact-upload-step.outputs.artifact-url}}'
})