Skip to content

Commit f6fdb00

Browse files
authored
ci: update release workflows
1 parent f15e7c2 commit f6fdb00

File tree

5 files changed

+28
-61
lines changed

5 files changed

+28
-61
lines changed

.github/workflows/foss-release.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/workflows/gplay-release.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Prepare Release PR
2+
3+
on:
4+
repository_dispatch:
5+
types: [prepare-release]
6+
workflow_dispatch:
7+
8+
jobs:
9+
call-release-pr:
10+
uses: FossifyOrg/.github/.github/workflows/prepare-release-pr.yml@main
11+
secrets: inherit

.github/workflows/release-commenter.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
paths:
7+
- ".fossify/release-marker.txt"
8+
9+
jobs:
10+
call-release-workflow:
11+
name: Release
12+
uses: FossifyOrg/.github/.github/workflows/release.yml@main
13+
with:
14+
track: ${{ vars.GPLAY_TRACK || 'beta' }}
15+
rollout: ${{ vars.GPLAY_ROLLOUT || '0.05' }}
16+
validate_only: ${{ vars.GPLAY_DRY_RUN == 'true' }}
17+
secrets: inherit

0 commit comments

Comments
 (0)