PSBT Support Added for Blockcore Wallet (#350) #886
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
name: Build and Release | |
on: | |
push: | |
branches: | |
- master | |
- main | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
build: | |
name: Build, Test and Release | |
runs-on: ubuntu-latest | |
env: | |
BLOCKCORE: "blockcore" | |
COINVAULT: "coinvault" | |
FREECITY: "freecity" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
with: | |
submodules: true | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
registry-url: "https://registry.npmjs.org" | |
- name: Variables | |
run: | | |
echo VERSION=$(npm run version --silent) >> $GITHUB_ENV | |
shell: bash | |
- name: Package Name | |
run: | | |
echo RELEASE_NAME_BLOCKCORE=${{ env.BLOCKCORE }}-${{ env.VERSION }}.zip >> $GITHUB_ENV | |
echo RELEASE_NAME_COINVAULT=${{ env.COINVAULT }}-${{ env.VERSION }}.zip >> $GITHUB_ENV | |
echo RELEASE_NAME_FREECITY=${{ env.FREECITY }}-${{ env.VERSION }}.zip >> $GITHUB_ENV | |
shell: bash | |
- name: Setup | |
run: npm ci | |
- name: Test | |
run: npm test -- --no-watch --no-progress --browsers=ChromeHeadless | |
continue-on-error: true | |
# - name: Build | |
# run: npm run all | |
- name: Package Blockcore | |
run: | | |
npm run build:production | |
cd dist/extension | |
zip -r ../../${{env.RELEASE_NAME_BLOCKCORE}} "./" | |
cd ../../ | |
rm -rf dist/extension | |
- name: Package CoinVault | |
run: | | |
npm run build:coinvault | |
cd dist/extension | |
zip -r ../../${{env.RELEASE_NAME_COINVAULT}} "./" | |
cd ../../ | |
rm -rf dist/extension | |
- name: Package FreeCityWallet | |
run: | | |
npm run build:freecity | |
cd dist/extension | |
zip -r ../../${{env.RELEASE_NAME_FREECITY}} "./" | |
cd ../../ | |
rm -rf dist/extension | |
- name: Upload Blockcore | |
uses: actions/upload-artifact@v1 | |
with: | |
name: ${{env.BLOCKCORE}}-preview-${{env.VERSION}} | |
path: "${{env.RELEASE_NAME_BLOCKCORE}}" | |
- name: Upload CoinVault | |
uses: actions/upload-artifact@v1 | |
with: | |
name: ${{env.COINVAULT}}-preview-${{env.VERSION}} | |
path: "${{env.RELEASE_NAME_COINVAULT}}" | |
- name: Upload FreeCityWallet | |
uses: actions/upload-artifact@v1 | |
with: | |
name: ${{env.FREECITY}}-preview-${{env.VERSION}} | |
path: "${{env.RELEASE_NAME_FREECITY}}" | |
- name: Create/Update Draft Release | |
uses: sondreb/action-release@main | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
files: "${{env.RELEASE_NAME_BLOCKCORE}};${{env.RELEASE_NAME_COINVAULT}};${{env.RELEASE_NAME_FREECITY}}" | |
draft: true | |
prerelease: false | |
name: "Blockcore Wallet (${{env.VERSION}})" | |
tag: ${{env.VERSION}} |