diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2020-12-03 23:41:19 -0700 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2020-12-03 23:41:19 -0700 |
| commit | f1796c8923139a3bb61f0e0227acd78badcdb28b (patch) | |
| tree | 789a590efa9d7545b66c7cf7bad9084c65bc3ce5 /.github | |
| parent | 26a552a22834289419c3c206f1b9ab6166e59d62 (diff) | |
consolidate syntax for CI config
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/release.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f6790047..65216499 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,14 +1,14 @@ name: Release on: push: - tags: - - 'v*' + tags: ['v*'] jobs: activate: if: github.repository == 'asciidoctor/asciidoctor-pdf' runs-on: ubuntu-latest steps: - - run: echo ok go + - name: Proceed + run: echo ok go build: needs: activate runs-on: ubuntu-latest |
