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 ba85705 commit 1d9c212Copy full SHA for 1d9c212
.github/workflows/ci.yml
@@ -2,7 +2,13 @@ name: ci
2
concurrency:
3
group: publish-${{ github.github.base_ref }}
4
cancel-in-progress: true
5
-on: [push]
+on:
6
+ workflow_dispatch:
7
+ inputs:
8
+ tag:
9
+ description: override release tag
10
+ required: false
11
+ push:
12
jobs:
13
test-and-publish:
14
if: github.repository == 'TanStack/query' && github.event_name != 'pull_request'
@@ -28,3 +34,4 @@ jobs:
28
34
GH_TOKEN: ${{ secrets.GH_TOKEN }}
29
35
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
30
36
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
37
+ TAG: ${{ inputs.tag }}
0 commit comments