UNPKG

fbz

Version:

Fork of the OpenBazaar 2.0 browser-based client.

28 lines (25 loc) 750 B
name: Deploy Code to Release Branch on: workflow_dispatch: jobs: build: name: Push to Release Branch runs-on: ubuntu-latest strategy: matrix: node-version: [14.x] steps: - name: Checkout uses: actions/checkout@v2 - run: npm install npm-run-all --save-dev - run: npm start - run: npm run build # Workflow dispatch event that pushes the current version to the release branch. # From here the secondary production deployment workflow will trigger to build the dependencies. - name: Deploy 🚀 uses: JamesIves/github-pages-deploy-action@4.0.0 with: branch: gh-pages folder: . clean: false single-commit: true