Skip to content

bump version to 0.0.5 #8

bump version to 0.0.5

bump version to 0.0.5 #8

Workflow file for this run

name: ci
on:
push:
tags: [ 'v*' ]
jobs:
build-and-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Build
run: bun run build:greasyfork
- name: Get version from package.json
id: version
run: echo "version=$(grep '"version":' package.json | cut -d'"' -f4)" >> $GITHUB_OUTPUT
- name: Create Release
uses: softprops/action-gh-release@v2
with:
files: dist/fcx.user.js
tag_name: v${{ steps.version.outputs.version }}
name: Release v${{ steps.version.outputs.version }}
body: |
Automated release of FCX
Built from commit: ${{ github.sha }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}