-
Notifications
You must be signed in to change notification settings - Fork 5
64 lines (56 loc) · 1.98 KB
/
npm-publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: Node.js Package
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- name: Install dependencies
working-directory: zoompinch-vue
run: npm install
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- name: Copy README to vue project
run: cp README.md zoompinch-vue/README.md
- name: Build and publish
working-directory: zoompinch-vue
run: npm run build
- name: Publish to npm
working-directory: zoompinch-vue
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
deploy-cloudflare:
runs-on: ubuntu-latest
needs: publish-npm
env:
CLOUDFLARE_PROJECT_NAME: zoompinch
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
steps:
- uses: actions/checkout@v2
- name: Install latest zoompinch
run: npm install zoompinch@latest
working-directory: playground
- name: test installed version
run: cat package.json | grep -e '"zoompinch":'
working-directory: playground
# - name: Install wrangler
# run: npm install --save-dev wrangler@latest
# working-directory: playground
- name: Build playground
run: npm run build
working-directory: playground
- name: Deploy to Cloudflare Pages
run: npx wrangler pages deploy dist --project-name ${{ env.CLOUDFLARE_PROJECT_NAME }} --branch main
working-directory: playground