Skip to content

Commit

Permalink
publish site with a separate GitHub Action
Browse files Browse the repository at this point in the history
  • Loading branch information
robfletcher committed Mar 13, 2019
1 parent 5ed2065 commit a9aa2fc
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/main.workflow
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,20 @@ action "release" {

action "site" {
uses = "MrRamych/gradle-actions@master"
args = ":site:orchidDeploy -Penv=prod -Prelease.useLastTag=true"
args = ":site:orchidBuild -Penv=prod -Prelease.useLastTag=true"
secrets = ["GITHUB_TOKEN"]
needs = ["release"]
}

action "publish" {
uses = "maxheld83/[email protected]"
env = {
BUILD_DIR = "site/build/docs/orchid/"
}
secrets = ["GH_PAT"]
needs = ["site"]
}

action "message" {
uses = "actions/bin/sh@master"
args = [
Expand Down
7 changes: 7 additions & 0 deletions site/src/orchid/resources/changelog/0_19_2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
version: '0.19.2'
---

## Bounteous Steel

- Adds `getValue` assertion/mapping for `Assertion.Builder<Map<*, *>>`.

0 comments on commit a9aa2fc

Please sign in to comment.