We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3543a5e commit ce81abcCopy full SHA for ce81abc
.github/workflows/beta-prerelease.yml
@@ -0,0 +1,11 @@
1
+name: Create beta pre-release
2
+
3
+on:
4
+ pull_request:
5
+ types: [labeled]
6
7
+jobs:
8
+ prerelease:
9
+ if: ${{ github.event.label.name == 'beta' }}
10
+ uses: ./pre-release.yml
11
+ secrets: inherit
.github/workflows/pre_release.yaml
@@ -1,11 +1,11 @@
name: Create a pre-release
on:
+ workflow_call:
# Push to master will deploy a beta version
push:
branches:
- master
- - 'feat/decouple'
tags-ignore:
- "**" # Ignore all tags to prevent duplicate builds when tags are pushed.
0 commit comments