Skip to content

Instantly share code, notes, and snippets.

@hrdtbs
Last active September 16, 2020 22:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hrdtbs/87fb763e5f19e8303a13497afc0a9347 to your computer and use it in GitHub Desktop.
Save hrdtbs/87fb763e5f19e8303a13497afc0a9347 to your computer and use it in GitHub Desktop.
GithubActions run after Deploying on Vercel
name: after vercel
on: deployment_status
jobs:
build:
if: github.event.deployment_status.state == 'success'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: hoge
uses: hoge-action
with:
url: ${{ github.event.deployment_status.target_url }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment