summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/deploy.yml
diff options
context:
space:
mode:
authorKasra Bigdeli <[email protected]>2019-12-24 18:27:42 -0500
committerKasra Bigdeli <[email protected]>2019-12-24 18:27:42 -0500
commit5f100c89acc83fc4eabe155c94e906b466b610d0 (patch)
tree1e6af2ab8afd7446c5d215ea471f30da5718a80a /.github/workflows/deploy.yml
parentf0a82c20812c5a1d14cd4a599d69aa7b366f2fa7 (diff)
downloadcaprover-one-click-apps-5f100c89acc83fc4eabe155c94e906b466b610d0.tar.gz
caprover-one-click-apps-5f100c89acc83fc4eabe155c94e906b466b610d0.zip
updated
Diffstat (limited to '.github/workflows/deploy.yml')
-rw-r--r--.github/workflows/deploy.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
new file mode 100644
index 0000000..aeba7c2
--- /dev/null
+++ b/.github/workflows/deploy.yml
@@ -0,0 +1,17 @@
+name: Publish One Click Apps
+
+on:
+ push:
+ branches: [master]
+
+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}}