Skip to content

Commit 4fe96c5

Browse files
feat: pre-publication changes — rubric, disclosure columns, ERC links, staging workflow
Squash-merges feat/pre-publication-changes into main. Includes editorial pass, EEA membership clarifications, and all pre-publication fixes.
1 parent 3b23300 commit 4fe96c5

2 files changed

Lines changed: 296 additions & 80 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Deploy
2+
3+
on:
4+
push:
5+
branches:
6+
- '**'
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
deploy:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Deploy to production
18+
if: github.ref_name == 'main'
19+
uses: peaceiris/actions-gh-pages@v4
20+
with:
21+
github_token: ${{ secrets.GITHUB_TOKEN }}
22+
publish_dir: .
23+
keep_files: true
24+
25+
- name: Deploy to staging
26+
if: github.ref_name != 'main'
27+
uses: peaceiris/actions-gh-pages@v4
28+
with:
29+
github_token: ${{ secrets.GITHUB_TOKEN }}
30+
publish_dir: .
31+
destination_dir: staging/${{ github.ref_name }}
32+
keep_files: true

0 commit comments

Comments
 (0)