There was an error while loading. Please reload this page.
1 parent df514aa commit 42a87ecCopy full SHA for 42a87ec
3 files changed
.github/workflows/auto-merge.yaml
@@ -1,5 +1,6 @@
1
name: Auto Merge
2
on:
3
+ workflow_dispatch:
4
push:
5
tags:
6
- '*'
.github/workflows/ci.yaml
@@ -1,6 +1,7 @@
name: CI
branches:
7
- '**'
.github/workflows/publish-platforms.yml
@@ -1,6 +1,13 @@
name: Publish to platforms
+ inputs:
+ tag:
+ description: 'Release tag to publish; empty takes the ref the run was started from'
8
+ required: false
9
+ type: string
10
+ default: ''
11
12
13
- "v*"
@@ -12,4 +19,5 @@ jobs:
19
uses: Slimefun5/workflows/.github/workflows/publish-platforms.yml@main
20
with:
14
21
project_name: ${{ github.event.repository.name }}
22
+ tag: ${{ inputs.tag }}
15
23
secrets: inherit
0 commit comments