Skip to content

Merge pull request #148 from maxcanna/dependabot/npm_and_yarn/ws-6.2.3 #102

Merge pull request #148 from maxcanna/dependabot/npm_and_yarn/ws-6.2.3

Merge pull request #148 from maxcanna/dependabot/npm_and_yarn/ws-6.2.3 #102

Workflow file for this run

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