chore(tezos) fix nft parser #191
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
# .github/workflows/publish.yml | |
name: Generate a build and push to another branch | |
on: | |
push: | |
branches: | |
- "main" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build and Push | |
steps: | |
- name: git-checkout | |
uses: actions/checkout@v2 | |
- name: setup node.js | |
uses: actions/setup-node@v2.4.0 | |
with: | |
node-version: 16.x | |
# cache: yarn | |
# cache-dependency-path: yarn.lock | |
- name: dep | |
run: yarn | |
- name: build | |
run: yarn build | |
- name: prepare package | |
run: mkdir out && mv package.json out && mv dist out && mv README.md out | |
- name: Prepare Master Release | |
uses: s0/git-publish-subdir-action@develop | |
if: ${{ github.ref == 'refs/heads/master' }} | |
env: | |
REPO: self | |
BRANCH: master-dist | |
FOLDER: out | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
MESSAGE: "Build: ({sha}) {msg}" | |
- name: Prepare Branch Release | |
uses: s0/git-publish-subdir-action@develop | |
if: ${{ github.ref != 'refs/heads/master' }} | |
env: | |
REPO: self | |
BRANCH: bleeding-edge | |
FOLDER: out | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
MESSAGE: "Build: ({sha}) {msg}" |