summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorKasra Bigdeli <[email protected]>2019-12-24 16:27:31 -0500
committerGitHub <[email protected]>2019-12-24 16:27:31 -0500
commitb7b0cb98224dc69f3c0ed3f6c1789695a0c37667 (patch)
treebc74dce35c920e5d338534988d415ab42dcb94e8 /.github
parentd0284cbff452677307d7df788c4981d618a734ae (diff)
downloadcaprover-one-click-apps-b7b0cb98224dc69f3c0ed3f6c1789695a0c37667.tar.gz
caprover-one-click-apps-b7b0cb98224dc69f3c0ed3f6c1789695a0c37667.zip
Create main.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644
index 0000000..244d337
--- /dev/null
+++ b/.github/workflows/main.yml
@@ -0,0 +1,17 @@
+name: Publish One Click Apps
+
+on:
+ push:
+ branches: [master_goes_here]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v1
+ - uses: actions/setup-node@v1
+ with:
+ node-version: 10
+ - run: npm ci && npm run build && ./publish-from-actions.sh
+ env:
+ GITHUB_PERSONAL_TOKEN: ${{secrets.GITHUB_PERSONAL_TOKEN}}