update to v0.0.18 #8
Workflow file for this run
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: Release extension | |
permissions: | |
contents: write | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
name: Build and Upload to Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use bun | |
uses: oven-sh/setup-bun@v2 | |
- name: Install Dependencies | |
run: bun install | |
- name: Build | |
run: bun run build | |
- name: zip extension bundle | |
working-directory: dist | |
run: zip -r ../ghost-wallet-${{ github.ref_name }}.zip . | |
- name: Upload Artifact as Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: ghost-wallet-${{ github.ref_name }}.zip |