-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from koriym/config
Support config and profile option
- Loading branch information
Showing
6 changed files
with
81 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: "ASD documents" | ||
|
||
on: | ||
["push", "workflow_dispatch"] | ||
|
||
jobs: | ||
asd: | ||
runs-on: ubuntu-latest | ||
name: ASD documents | ||
steps: | ||
# このリポジトリのプライベートアクションを使用するには | ||
# リポジトリをチェックアウトする | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Generates ASD documents | ||
uses: ./ # Uses an action in the root directory | ||
|
||
- name: Deploy | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./asd-public |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0"?> | ||
<asd xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="https://koriym.github.io/app-state-diagram/asd.xsd"> | ||
<watch>false</watch> | ||
</asd> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<alps | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="https://alps-io.github.io/schemas/alps.xsd"> | ||
<title>ALPS Blog</title> | ||
<doc>An ALPS profile example for ASD</doc> | ||
<link href="https://github.com/koriym/app-state-diagram/issues" rel="issue"/> | ||
|
||
<!-- Ontology --> | ||
<descriptor id="id" def="https://schema.org/identifier" title="identifier"/> | ||
<descriptor id="articleBody" def="https://schema.org/articleBody" title="article body"/> | ||
<descriptor id="dateCreated" def="https://schema.org/dateCreated" title="create date"/> | ||
|
||
<!-- Taxonomy --> | ||
<descriptor id="Index" title="Home"> | ||
<descriptor href="#goBlog"/> | ||
</descriptor> | ||
<descriptor id="About" title="About Us"> | ||
<descriptor href="#goBlog"/> | ||
</descriptor> | ||
<descriptor id="Blog" def="https://schema.org/Blog" title="Blog Post List" tag="collection"> | ||
<descriptor href="#goAbout"/> | ||
<descriptor href="#doPost"/> | ||
<descriptor href="#goBlogPosting"/> | ||
<descriptor href="#BlogPosting"/> | ||
</descriptor> | ||
<descriptor id="BlogPosting" def="https://schema.org/BlogPosting" title="Blog Post" tag="item"> | ||
<descriptor href="#id"/> | ||
<descriptor href="#dateCreated"/> | ||
<descriptor href="#articleBody"/> | ||
<descriptor href="#goBlog"/> | ||
</descriptor> | ||
|
||
<!-- Choreography --> | ||
<descriptor id="goStart" type="safe" rt="#Blog" rel="collection" title="Go to Home"/> | ||
<descriptor id="goAbout" type="safe" rt="#About" title="Go to About"/> | ||
<descriptor id="goBlog" type="safe" rt="#Blog" rel="collection" title="See the blog post list"/> | ||
<descriptor id="goBlogPosting" type="safe" rel="item" rt="#BlogPosting" title="See the blog post"> | ||
<descriptor href="#id"/> | ||
</descriptor> | ||
<descriptor id="doPost" def="https://activitystrea.ms/specs/json/1.0/#post-verb" type="unsafe" rel="collection" rt="#Blog" title="Post the article"> | ||
<descriptor href="#articleBody"/> | ||
</descriptor> | ||
</alps> |