Merge pull request #2222 from tannewt/fix_release_checks

Switch to the new release event type filter
This commit is contained in:
Dan Halbert 2019-10-15 16:41:03 -04:00 committed by GitHub
commit 64c1484bd7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 8 deletions

View File

@ -1,6 +1,12 @@
name: Build CI name: Build CI
on: [push, pull_request, release] on:
push:
pull_request:
release:
types: [published]
check_suite:
types: [rerequested]
jobs: jobs:
test: test:
@ -10,9 +16,6 @@ jobs:
env: env:
GITHUB_CONTEXT: ${{ toJson(github) }} GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT" run: echo "$GITHUB_CONTEXT"
- name: Fail if not a release publish # workaround has `on` doesn't have this filter
run: exit 1
if: github.event_name == 'release' && (github.event.action != 'published' && github.event.action != 'rerequested')
- name: Set up Python 3.5 - name: Set up Python 3.5
uses: actions/setup-python@v1 uses: actions/setup-python@v1
with: with:

View File

@ -1,6 +1,8 @@
name: Update CircuitPython.org name: Update CircuitPython.org
on: release on:
release:
types: [published]
jobs: jobs:
website: website:
@ -10,9 +12,6 @@ jobs:
env: env:
GITHUB_CONTEXT: ${{ toJson(github) }} GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT" run: echo "$GITHUB_CONTEXT"
- name: Fail if not a release publish # workaround has `on` doesn't have this filter
run: exit 1
if: github.event.action != 'published'
- name: Set up Python 3.5 - name: Set up Python 3.5
uses: actions/setup-python@v1 uses: actions/setup-python@v1
with: with: