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 eb973bc commit 828e3cbCopy full SHA for 828e3cb
.github/workflows/release.yml
@@ -3,9 +3,9 @@ on:
3
workflow_dispatch:
4
push:
5
tags:
6
- - v*.*.*
7
- - v*.*.*-rc
8
- - "!v*.*.*-**"
+ - v*.*.* # Match v1.2.3
+ - v*.*.*-rc # Match v1.2.3-rc
+ - "!v*.*.*-*[^rc]" # Exclude tags that end with something other than 'rc'
9
env:
10
PROVIDER: "runpod"
11
# THIS GITHUB_TOKEN IS A REQUIREMENT TO BE ABLE TO WRITE TO GH RELEASES
provider/constants.go
@@ -0,0 +1,3 @@
1
+package provider
2
+
+const URL = "https://api.runpod.io/graphql?api_key="
0 commit comments