Skip to content

feat: 导出整个收藏夹的所有内容 (#230) #789

feat: 导出整个收藏夹的所有内容 (#230)

feat: 导出整个收藏夹的所有内容 (#230) #789

Workflow file for this run

name: Nightly Builds
on:
push:
branches:
- master
tags:
- '*'
workflow_dispatch:
permissions:
contents: write
jobs:
build:
uses: ./.github/workflows/my-build-action.yml
if: startsWith(github.ref, 'refs/heads')
with:
name: 'Nightly Builds'
secrets: inherit
build_minified_release:
uses: ./.github/workflows/my-build-action.yml
if: startsWith(github.ref, 'refs/heads/')
with:
name: 'Minified Builds'
minify: true
nightly_release: true
secrets: inherit
release:
uses: ./.github/workflows/my-build-action.yml
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
with:
name: 'Release'
release: true
minify: true
secrets: inherit