Skip to content

Commit

Permalink
chore: set shell type
Browse files Browse the repository at this point in the history
  • Loading branch information
bcomnes committed Sep 8, 2020
1 parent 2503853 commit 5191a11
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,21 @@ runs:
using: 'composite'
steps:
- run: git config --global user.email "${{ inputs.git_email }}"
shell: bash
- run: git config --global user.name "${{ inputs.git_username }}"
shell: bash
- run: npm i
shell: bash
- run: npm test
shell: bash
if: ${{ inputs.skip_test }}
- run: npm version ${{ inputs.newversion }}
shell: bash
- run: git push --follow-tags
shell: bash
if: ${{ inputs.push_version_commit }}
- run: ${{ inputs.publish_cmd }}
shell: bash
env:
GH_RELEASE_GITHUB_API_TOKEN: ${{ inputs.github_token }}
NODE_AUTH_TOKEN: ${{ inputs.npm_token }}

0 comments on commit 5191a11

Please sign in to comment.