mirror of
https://github.com/status-im/actions-gh-pages.git
synced 2025-02-23 10:18:23 +00:00
ci: Add deployment status check workflow (#125)
This commit is contained in:
parent
79cc24d126
commit
b81e21a3dc
14
.github/workflows/pages-status-check.yml
vendored
Normal file
14
.github/workflows/pages-status-check.yml
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
name: Check Pages Status
|
||||
|
||||
on: page_build
|
||||
|
||||
jobs:
|
||||
pages-status-check:
|
||||
runs-on: ubuntu-18.04
|
||||
steps:
|
||||
- name: check status
|
||||
run: |
|
||||
status = '${{ github.event.build.status }}'
|
||||
errormsg = '${{ github.event.build.error.message }}'
|
||||
assert status == 'built', 'Status: {status}\nError: {errormsg}'.format(status, errormsg)
|
||||
shell: python
|
Loading…
x
Reference in New Issue
Block a user