Skip to content
This repository has been archived by the owner on Apr 22, 2024. It is now read-only.

Merge pull request #103 from factchain/warpcast_is_live #81

Merge pull request #103 from factchain/warpcast_is_live

Merge pull request #103 from factchain/warpcast_is_live #81

name: Build Extension
on:
push:
branches: [ main ]
jobs:
build-extension:
runs-on: ubuntu-latest
permissions:
contents: write
defaults:
run:
working-directory: ./fc-community-extension
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: yarn
- name: Build extension
run: |
yarn run build
git status -u
- name: Commit and push
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: '[auto][extension] update build folder'
file_pattern: ./fc-community-extension/factchain-extension-build/*
commit_user_name: Factchain Bot
commit_user_email: [email protected]
commit_author: Factchain Bot <[email protected]>
- name: Check results
run: git status -u