fix: remove service worker #74
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: Build and release static export | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Bun | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: "latest" | |
- name: Install dependencies | |
run: bun install | |
- name: Build static export | |
run: | | |
bun run build | |
- name: Compress dist folder | |
run: zip -r dist.zip dist | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: dist.zip | |
- name: Changelog | |
run: bun x changelogithub | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |