tauri使用github的action自动发布release,让别人也可以看到下载链接
像上面这种链接,别人是看不到的,只有你能看到,因为这种发布的是草稿内容,所以只有仓库作者自己能看到。添加一个:publish: true。
·
例如我的仓库:GitHub - Sjj1024/LiveBox: livebox是一个模仿抖音直播间效果的桌面端软件,输入抖音直播间地址,就可以获取到直播间的直播视频和弹幕聊天消息,礼物消息等内容,模仿抖音直播
像上面这种链接,别人是看不到的,只有你能看到,因为这种发布的是草稿内容,所以只有仓库作者自己能看到。别人打开之后的页面就是另外的样子:
所以为了让别人也可以看得到下载链接,就需要配置github打包时候的ymal文件的配置项:
添加一个:publish: true
完整的配置项:
name: Release
on:
push:
tags:
- 'v*'
workflow_dispatch:
jobs:
release:
permissions:
contents: write
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-20.04, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-20.04'
# You can remove libayatana-appindicator3-dev if you don't use the system tray feature.
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libayatana-appindicator3-dev librsvg2-dev
- name: Rust setup
uses: dtolnay/rust-toolchain@stable
- name: Rust cache
uses: swatinem/rust-cache@v2
with:
workspaces: './src-tauri -> target'
- name: Sync node version and setup cache
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install PNPM
run: npm i -g pnpm
- name: Install frontend dependencies
# If you don't have `beforeBuildCommand` configured you may want to build your frontend here too.
run: pnpm install # Change this to npm, yarn or pnpm.
- name: Build the app
uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: ${{ github.ref_name }} # This only works if your workflow triggers on new tags.
releaseName: 'LiveBox v__VERSION__' # tauri-action replaces \_\_VERSION\_\_ with the app version.
releaseBody: 'See the assets to download and install this version.'
releaseDraft: false
prerelease: false
publish: true
然后再进行打tag后打包,就可以让别人看到了:
更多推荐
已为社区贡献10条内容
所有评论(0)