Fix missing "s" which prevented GH Actions deployment

This commit is contained in:
MD 2020-11-25 20:33:33 +00:00
parent 9a23f806fe
commit 4baad6b89c
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ jobs:
chmod +x gradlew
./gradlew build --stacktrace
- name: Deploy with Gradle
if: ${{ success() && github.event_name == 'push' && github.repository == 'EssentialsX/Essentials' && github.ref == 'refs/head/2.x' }}
if: ${{ success() && github.event_name == 'push' && github.repository == 'EssentialsX/Essentials' && github.ref == 'refs/heads/2.x' }}
env:
ORG_GRADLE_PROJECT_essxUsername: ${{ secrets.ESSENTIALSX_DEPLOY_USERNAME }}
ORG_GRADLE_PROJECT_essxPassword: ${{ secrets.ESSENTIALSX_DEPLOY_PASSWORD }}