Skip to content

Commit 9a0a768

Browse files
committed
fix: only run goreleaser on tag pushes
1 parent 2659b69 commit 9a0a768

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ permissions:
1414
jobs:
1515
release:
1616
runs-on: ubuntu-latest
17+
if: startsWith(github.ref, 'refs/tags/v')
1718
steps:
1819
- name: Checkout
1920
uses: actions/checkout@v4

node/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "new-dockerfile",
3-
"version": "0.2.4",
3+
"version": "0.2.5",
44
"config": {
5-
"bin_version": "0.2.4"
5+
"bin_version": "0.2.5"
66
},
77
"description": "Autogenerate Dockerfiles from your project source code",
88
"main": "index.js",

0 commit comments

Comments
 (0)