Skip to content

Commit

Permalink
Changed the workflow to fix the creation of new refs
Browse files Browse the repository at this point in the history
  • Loading branch information
curiousjaki committed Jan 4, 2023
1 parent db38f86 commit e7d03a4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: build_and_release
run-name: build and release the tilt plugin
on:
push:
branches:
- "main"
#branches:
# - "main"
tags:
- '[0-9]+.[0-9]+.[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
build-and-release:
runs-on: ubuntu-latest
Expand All @@ -25,8 +25,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
tag_name: ${{ github.ref_name }}
release_name: Release ${{ github.ref_name }}
draft: false
prerelease: false

Expand Down

0 comments on commit e7d03a4

Please sign in to comment.