corrected bugg.. #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |