Merge pull request #149 from rive-app/constraints

Adding git config to publish workflow.
This commit is contained in:
Luigi Rosso
2021-07-14 20:49:14 -07:00
committed by GitHub

View File

@ -34,6 +34,10 @@ jobs:
"expiration": 1624388694898 "expiration": 1624388694898
} }
EOF EOF
- name: Git config
run: |
git config --local user.email 'hello@rive.app'
git config --local user.name ${{ github.actor }}
- name: Publish - name: Publish
run: ./release.sh run: ./release.sh
working-directory: ./.github/scripts/release working-directory: ./.github/scripts/release