Fix condition syntax in publish job

This commit is contained in:
Hakan Ensari 2024-09-16 01:27:16 +02:00 committed by GitHub
parent 2b20ae70d2
commit b808458392
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -25,7 +25,7 @@ jobs:
publish:
needs: test
if: github.event_name == 'push'
if: ${{ github.event_name == 'push' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3