Skip to content

Commit cb5acf1

Browse files
committed
Switch order of GitHub and Observable deploys
1 parent 4d5772e commit cb5acf1

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/deploy.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ jobs:
4848
git push
4949
env:
5050
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
51-
- name: Deploy to Observable Cloud
52-
run: npm run deploy -- --message "$(git log -1 --pretty=%s)"
53-
env:
54-
OBSERVABLE_TOKEN: ${{ secrets.OBSERVABLE_DEPLOY_TOKEN }}
5551
- uses: actions/configure-pages@v4
56-
5752
- uses: actions/upload-pages-artifact@v3
5853
with:
5954
path: dist
6055
- name: Deploy to GitHub Pages
6156
id: deployment
62-
uses: actions/deploy-pages@v4
57+
uses: actions/deploy-pages@v4
58+
59+
- name: Deploy to Observable Cloud
60+
run: npm run deploy -- --message "$(git log -1 --pretty=%s)"
61+
env:
62+
OBSERVABLE_TOKEN: ${{ secrets.OBSERVABLE_DEPLOY_TOKEN }}

src/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ The critical core tables are `word instance`, `word-level intertext`, `word-leve
9494

9595
While the project overall is strictly concerned with Latin poetry, Greek texts also need to be included within the database due to Latin poetry’s clear intertextual engagement with them. Accordingly, each author has a language property that specifies them as either a Greek or Latin author. While this does not allow for the possibility of bilingual authors, our surviving texts do not really compass this scenario, or do so insufficiently to justify putting the language label with works instead of authors. ([The Late Antique poet Claudian is one such counterexample](https://antigonejournal.com/2024/12/claudians-gigantomachia/), but he is so late that his works are unlikely to serve as the *source* of any intertexts in the database; and this is the only situation in which a Greek text can enter the database.) Prose texts are also included in the database, but they, like Greek authors, cannot be selected in the interface.
9696

97-
Finally, each `word-level intertext` records at least one scholarly source for its data (sometimes the original publication proposing the intertext, and sometimes a commentary), sources that are collectively stored in a `publication` table. (It is also possible to record an ancient work as the scholarly source, since occasionally the explicit recognition of an intertext goes back to a grammarian of antiquity.) This information is made available when a passage is selected.
97+
Finally, each `word-level intertext` records at least one scholarly source for its data (sometimes the original publication proposing the intertext, sometimes a later publication, and sometimes a commentary), sources that are collectively stored in a `publication` table. (It is also possible to record an ancient work as the scholarly source, since occasionally the explicit recognition of an intertext goes back to a grammarian of antiquity.) This information is made available when a passage is selected.
9898

9999
In addition to the tables described above, the two tables `authorship problem` and `collection` are used to model less straightforward forms of authorship (such as anonymity, uncertain authorship, or preservation in a collection of works), while the three tables `textual problem`, `alternate reading`, and `word-level intertext modification` are newer additions to the database that are used to model variant readings and the changes they imply for proposed intertextual allusions. Some additional information about particulars of the database and project can be found on the [Frequently Asked Questions page](./faq).
100100

src/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1190,9 +1190,9 @@ for (let i in sourcesFilteredIDs) {
11901190
// modern sources
11911191
else {
11921192
// add author(s), separated by comma if more than one
1193-
for (let i in pub.authorIDs) {
1194-
pubString += i > 0 ? ', ' : '';
1195-
let author = lookupIDTable.get(pub.authorIDs[i]);
1193+
for (let j in pub.authorIDs) {
1194+
pubString += j > 0 ? ', ' : '';
1195+
let author = lookupIDTable.get(pub.authorIDs[j]);
11961196
pubString += author;
11971197
}
11981198

0 commit comments

Comments
 (0)