Skip to content

Commit eab8b55

Browse files
chore: set trigger build on branch
1 parent b2ecf9b commit eab8b55

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -55,26 +55,26 @@ jobs:
5555
needs: [build, test]
5656
if: github.ref == 'refs/heads/main'
5757
outputs:
58-
version: ${{ steps.semver.outputs.next }}
58+
version: v0.11.2
5959
steps:
6060
- name: Checkout your repository using git
6161
uses: actions/checkout@v4
62-
- name: Get next version
63-
id: semver
64-
uses: ietf-tools/semver-action@v1
65-
with:
66-
token: ${{ github.token }}
67-
branch: main
68-
noVersionBumpBehavior: silent
69-
noNewCommitBehavior: silent
62+
# - name: Get next version
63+
# id: semver
64+
# uses: ietf-tools/semver-action@v1
65+
# with:
66+
# token: ${{ github.token }}
67+
# branch: main
68+
# noVersionBumpBehavior: silent
69+
# noNewCommitBehavior: silent
7070
- name: Create release tag
7171
uses: ncipollo/release-action@v1.12.0
72-
if: ${{ steps.semver.outputs.next != null }}
72+
# if: ${{ steps.semver.outputs.next != null }}
7373
with:
7474
allowUpdates: true
7575
draft: false
7676
makeLatest: true
77-
tag: ${{ steps.semver.outputs.next }}
77+
tag: v0.11.2
7878
token: ${{ github.token }}
7979

8080
build-docker:

0 commit comments

Comments
 (0)