-
Notifications
You must be signed in to change notification settings - Fork 5
96 lines (81 loc) · 2.92 KB
/
publish-ectd-bundle.yaml
File metadata and controls
96 lines (81 loc) · 2.92 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'ectd_readme/README.qmd'
- 'adrg/_adrg.qmd'
- 'cover-letter/cover-letter.qmd'
- 'pilot5-submission/**'
- 'renv.lock'
name: Publish ECTD bundle
jobs:
build-deploy:
runs-on: ubuntu-latest
permissions:
contents: write
pages: write
id-token: write
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
with:
logger: pretty
log-directives: nix-installer=trace
backtrace: full
- name: Nix cache
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Build development environment
run: |
nix-build
- name: Render ADRG PDF (custom)
env:
QUARTO_PRINT_STACK: true
run: |
nix-shell --run 'quarto render adrg/adrg-quarto-pdf.qmd --to pdf'
shell: bash
- name: Publish ADRG HTML to QuartoPub
env:
QUARTO_PUB_AUTH_TOKEN: ${{ secrets.QUARTO_PUB_AUTH_TOKEN }}
run: |
nix-shell --run "quarto publish --no-prompt --no-browser --id 91e55c70-e667-47c8-ae39-bd0284b68ca8 adrg/adrg-quarto-html.qmd"
- name: Render ECTD README (custom)
env:
QUARTO_PRINT_STACK: true
run: |
nix-shell --run 'quarto render ectd_readme/README.qmd --to gfm'
- name: Render cover letter (custom)
env:
QUARTO PRINT STACK: true
run: |
nix-shell --run 'quarto render cover-letter/cover-letter.qmd'
- name: Set up object storage s3cmd cli tool
uses: s3-actions/s3cmd@v1.6.1
with:
provider: linode
region: 'us-east-1'
access_key: ${{ secrets.S3_ACCESS_KEY }}
secret_key: ${{ secrets.S3_SECRET_KEY }}
- name: Publish ADRG PDF to object storage
run: |
s3cmd put adrg/adrg-quarto-pdf.pdf --mime-type 'application/pdf' --acl-public s3://rsubmission-draft/pilot4-container-adrg.pdf
- name: Check out ECTD bundle destination repo
uses: actions/checkout@v4
with:
repository: RConsortium/submissions-pilot5-datasetjson-to-fda
path: ./submissions-pilot5-datasetjson-to-fda
token: ${{ secrets.API_TOKEN_GITHUB }}
- name: Create ECTD bundle
run: bash ./.github/scripts/create-ectd-bundle.sh
- name: Archive ECTD bundle
uses: actions/upload-artifact@v4
with:
name: ectd-bundle-archive
path: submissions-pilot5-datasetjson-to-fda
- name: Push ECTD bundle repository
run: bash ./.github/scripts/push-ectd-bundle.sh