Skip to content

Commit 3ae735a

Browse files
committed
fix: resolve issue with tag names
1 parent c47c731 commit 3ae735a

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ on:
33
push:
44
branches:
55
- main
6-
- beta
76
jobs:
87
build:
98
runs-on: ubuntu-latest
@@ -43,8 +42,8 @@ jobs:
4342
with:
4443
context: .
4544
push: true
46-
tags: jives/hlds:${{ matrix.game }}-beta
47-
build-args: GAME=${{ matrix.game }}-beta
45+
tags: jives/hlds:${{ matrix.game }}
46+
build-args: GAME=${{ matrix.game }}
4847

4948
publish:
5049
runs-on: ubuntu-latest
@@ -58,7 +57,6 @@ jobs:
5857

5958
- name: Bump Version and Create Tag 🏷️
6059
id: create_tag
61-
if: github.ref == 'refs/heads/main'
6260
uses: anothrNick/[email protected]
6361
env:
6462
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -67,7 +65,6 @@ jobs:
6765

6866
- name: Create Release 🚀
6967
id: create_release
70-
if: github.ref == 'refs/heads/main'
7168
uses: actions/create-release@v1
7269
env:
7370
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)