Skip to content

Commit

Permalink
add: Allow other tag names for releases
Browse files Browse the repository at this point in the history
  • Loading branch information
uyjulian committed Feb 23, 2024
1 parent 7c375bf commit 8885219
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,15 +127,15 @@
],
"runs-on" : "ubuntu-latest",
"timeout-minutes" : 5,
"if" : "startsWith(github.ref, 'refs/tags/v')",
"if" : "github.ref_type == 'tag' && github.ref != 'refs/tags/latest'",
"steps" : [
{
"name" : "Download all artifacts",
"uses" : "actions/download-artifact@v3"
},
{
"name" : "Create release",
"if" : "startsWith(github.ref, 'refs/tags/v')",
"if" : "github.ref_type == 'tag' && github.ref != 'refs/tags/latest'",
"uses" : "marvinpinto/action-automatic-releases@latest",
"with" : {
"repo_token" : "${{ secrets.GITHUB_TOKEN }}",
Expand Down

0 comments on commit 8885219

Please sign in to comment.