feat: |UI| add JUNK_MAIL_FORCE_PASS_LIST (#539) #46
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: Tag Build CI | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- uses: pnpm/action-setup@v3 | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 8 | |
run_install: false | |
- name: Build Frontend | |
run: cd frontend && pnpm install --no-frozen-lockfile && pnpm build:release | |
- name: Zip Frontend dist | |
run: cd frontend/dist/ && zip -r frontend.zip * && mv frontend.zip ../ | |
- name: Build Telegram Frontend | |
run: cd frontend && pnpm install --no-frozen-lockfile && pnpm build:telegram:release | |
- name: Zip Telegram Frontend dist | |
run: cd frontend/dist/ && zip -r telegram-frontend.zip * && mv telegram-frontend.zip ../ | |
- name: cp wrangler.toml | |
run: cd worker && cp wrangler.toml.template wrangler.toml | |
- name: Build Backend | |
run: cd worker && pnpm install --no-frozen-lockfile && pnpm build | |
- name: Upload to Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
frontend/frontend.zip | |
frontend/telegram-frontend.zip | |
worker/dist/worker.js |