From b7b0cb98224dc69f3c0ed3f6c1789695a0c37667 Mon Sep 17 00:00:00 2001 From: Kasra Bigdeli Date: Tue, 24 Dec 2019 16:27:31 -0500 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/main.yml 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}}