Skip to content

Commit

Permalink
Converted actions to YAML syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
manicki committed Sep 27, 2019
1 parent 37b19de commit c781cae
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 29 deletions.
29 changes: 0 additions & 29 deletions .github/main.workflow

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/push.yml
@@ -0,0 +1,26 @@
on: push
name: Build, Test, and Publish
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Build
uses: actions/npm@master
with:
args: ci
- name: Test
uses: actions/npm@master
with:
args: test
- name: Tag
uses: actions/bin/filter@master
with:
args: tag
- name: Publish
uses: actions/npm@master
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
with:
args: publish --access public

0 comments on commit c781cae

Please sign in to comment.