Merge pull request #145 from maxcanna/dependabot/npm_and_yarn/express… #99
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
notify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Report deploy on GitHub | |
run: | | |
echo DEPLOYMENT_ID=$(echo '{"ref":"master","required_contexts":[]}' | curl -X POST \ | |
-H 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' \ | |
-H content-type:application/json -H accept:application/vnd.github.ant-man-preview+json \ | |
https://api.github.com/repos/$GITHUB_REPOSITORY/deployments -d @- | jq -r .id) >> $GITHUB_ENV | |
- name: Update deploy on GitHub | |
run: | | |
echo '{"state":"success"}' | curl -X POST \ | |
-H 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' \ | |
-H content-type:application/json -H accept:application/vnd.github.ant-man-preview+json \ | |
https://api.github.com/repos/$GITHUB_REPOSITORY/deployments/$DEPLOYMENT_ID/statuses -d @- | jq -r |