Skip to content

Commit

Permalink
fix: only run goreleaser on tag pushes
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredLunde committed May 20, 2024
1 parent 2659b69 commit 9a0a768
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ permissions:
jobs:
release:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions node/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "new-dockerfile",
"version": "0.2.4",
"version": "0.2.5",
"config": {
"bin_version": "0.2.4"
"bin_version": "0.2.5"
},
"description": "Autogenerate Dockerfiles from your project source code",
"main": "index.js",
Expand Down

0 comments on commit 9a0a768

Please sign in to comment.