Removed main branch condition.

This commit is contained in:
Andrew Lalis 2024-01-01 21:17:11 -05:00
parent f59640aa9c
commit 63bb7cb097
1 changed files with 2 additions and 2 deletions

View File

@ -37,11 +37,11 @@ jobs:
run: mvn -B verify --file pom.xml
- name: Build Package for Release
if: ${{ github.ref_name == 'main' && startsWith(github.ref, 'refs/tags/') }}
if: ${{ startsWith(github.ref, 'refs/tags/') }}
run: ./scripts/package-linux-deb.sh
- name: Create Release
if: ${{ github.ref_name == 'main' && startsWith(github.ref, 'refs/tags/') }}
if: ${{ startsWith(github.ref, 'refs/tags/') }}
uses: softprops/action-gh-release@v1
with:
fail_on_unmatched_files: true