Skip to content

Commit

Permalink
ci: create personal build on pb branch
Browse files Browse the repository at this point in the history
  • Loading branch information
fxliang committed Oct 15, 2024
1 parent 30a5ffe commit 34576b3
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/commit-ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Commit CI

permissions:
contents: write

on:
workflow_dispatch:
push:
Expand Down Expand Up @@ -118,6 +121,18 @@ jobs:
.\output\archives\weasel*.exe
.\output\archives\debug_symbols.7z
- name: Create Personal Build
if: ${{ github.repository == 'fxliang/weasel' && github.ref == 'refs/heads/pb' }}
uses: 'marvinpinto/action-automatic-releases@latest'
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
automatic_release_tag: pblatest
prerelease: true
title: "Personal Build"
files: |
./output/archives/weasel*.exe
./output/archives/debug_symbols.7z
xbuild:
needs: lint
runs-on: windows-2019
Expand Down

0 comments on commit 34576b3

Please sign in to comment.